Lines Matching refs:LARGEST_INT64
491 if( s>=((LARGEST_INT64-9)/10) ){ in sqlite3AtoF()
506 if( s<((LARGEST_INT64-9)/10) ){ in sqlite3AtoF()
567 if( s>=(LARGEST_INT64/10) ) break; /*OPTIMIZATION-IF-FALSE*/ in sqlite3AtoF()
744 if( u>LARGEST_INT64 ){ in sqlite3Atoi64()
749 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
772 assert( u<=LARGEST_INT64 ); in sqlite3Atoi64()
779 assert( u<=LARGEST_INT64 ); in sqlite3Atoi64()
782 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
789 assert( u-1==LARGEST_INT64 ); in sqlite3Atoi64()
1444 testcase( iA>0 && LARGEST_INT64 - iA == iB ); in sqlite3AddInt64()
1445 testcase( iA>0 && LARGEST_INT64 - iA == iB - 1 ); in sqlite3AddInt64()
1446 if( iA>0 && LARGEST_INT64 - iA < iB ) return 1; in sqlite3AddInt64()
1448 testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 1 ); in sqlite3AddInt64()
1449 testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 2 ); in sqlite3AddInt64()
1450 if( iA<0 && -(iA + LARGEST_INT64) > iB + 1 ) return 1; in sqlite3AddInt64()
1477 if( iA>LARGEST_INT64/iB ) return 1; in sqlite3MulInt64()
1485 if( -iA>LARGEST_INT64/-iB ) return 1; in sqlite3MulInt64()
1610 if( x>60 ) return (u64)LARGEST_INT64; in sqlite3LogEstToInt()