Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c7746 #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
19279 if( v==SMALLEST_INT64 ){ in sqlite3VXPrintf()
21099 *pNum = SMALLEST_INT64; in sqlite3Atoi64()
21130 assert( (*pNum)==SMALLEST_INT64 ); in sqlite3Atoi64()
21721 testcase( iB==SMALLEST_INT64+1 ); in sqlite3SubInt64()
21722 if( iB==SMALLEST_INT64 ){ in sqlite3SubInt64()
57478 static const i64 minInt = SMALLEST_INT64;
57573 if( pMem->r==(double)pMem->u.i && pMem->u.i>SMALLEST_INT64
58225 if( pVal->u.i==SMALLEST_INT64 ){
64795 if( u.af.iA==-1 && u.af.iB==SMALLEST_INT64 ) goto fp_math;
[all …]
/NextBSD/contrib/sqlite3/
HDsqlite3.c9150 #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
21834 if( v==SMALLEST_INT64 ){
24463 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64;
25150 testcase( iB==SMALLEST_INT64+1 );
25151 if( iB==SMALLEST_INT64 ){
64609 static const i64 minInt = SMALLEST_INT64;
64698 if( pMem->u.r==ix && ix>SMALLEST_INT64 && ix<LARGEST_INT64 ){
65521 }else if( pVal->u.i==SMALLEST_INT64 ){
65522 pVal->u.r = -(double)SMALLEST_INT64;
73556 if( iA==-1 && iB==SMALLEST_INT64 ) goto fp_math;
[all …]