Home | History | Annotate | Download | only in dist

Lines Matching refs:LARGEST_INT64

7241 #define LARGEST_INT64  (0xffffffff|(((i64)0x7fffffff)<<32))
7242 #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64)
20255 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20270 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20322 while( s<(LARGEST_INT64/10) && e>0 ) e--,s*=10;
25418 mask = (sizeof(long)==8) ? LARGEST_INT64 : 0x7fffffff;
54495 static const i64 maxInt = LARGEST_INT64;
54592 && ALWAYS(pMem->u.i<LARGEST_INT64) ){
79916 if( n==0 && r>=0 && r<LARGEST_INT64-1 ){
79918 }else if( n==0 && r<0 && (-r)<LARGEST_INT64-1 ){
91711 p->nSelectRow = (double)LARGEST_INT64;