Home
last modified time | relevance | path

Searched refs:LARGEST_INT64 (Results 1 – 1 of 1) sorted by relevance

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.c15006 #define LARGEST_INT64 (0xffffffff|(((i64)0x7fffffff)<<32)) macro
15008 #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64)
35412 if( u>LARGEST_INT64 ){
35417 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64;
35440 assert( u<=LARGEST_INT64 );
35447 assert( u<=LARGEST_INT64 );
35450 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64;
35457 assert( u-1==LARGEST_INT64 );
36182 testcase( iA>0 && LARGEST_INT64 - iA == iB );
36183 testcase( iA>0 && LARGEST_INT64 - iA == iB - 1 );
[all …]