Home
last modified time | relevance | path

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

12345678910

/dports/databases/sqlite3/sqlite-src-3350500/ext/misc/
H A Dtotype.c63 #ifndef SMALLEST_INT64
64 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
149 *pNum = SMALLEST_INT64; in totypeAtoi64()
177 assert( (*pNum)==SMALLEST_INT64 ); in totypeAtoi64()
H A Dunionvtab.c153 #ifndef SMALLEST_INT64
154 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
1145 sqlite3_int64 iMin = SMALLEST_INT64; in unionFilter()
1168 if( iMax==SMALLEST_INT64 ){ in unionFilter()
1217 if( iMin!=SMALLEST_INT64 && iMin>pSrc->iMin ){ in unionFilter()
/dports/databases/sqlcipher/sqlcipher-3.4.2/ext/misc/
H A Dtotype.c63 #ifndef SMALLEST_INT64
64 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
149 *pNum = SMALLEST_INT64; in totypeAtoi64()
177 assert( (*pNum)==SMALLEST_INT64 ); in totypeAtoi64()
H A Dunionvtab.c64 #ifndef SMALLEST_INT64
65 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
596 sqlite3_int64 iMin = SMALLEST_INT64; in unionFilter()
619 if( iMax==SMALLEST_INT64 ){ in unionFilter()
669 if( iMin!=SMALLEST_INT64 && iMin>pSrc->iMin ){ in unionFilter()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/ext/misc/
H A Dtotype.c63 #ifndef SMALLEST_INT64
64 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
149 *pNum = SMALLEST_INT64; in totypeAtoi64()
177 assert( (*pNum)==SMALLEST_INT64 ); in totypeAtoi64()
H A Dunionvtab.c153 #ifndef SMALLEST_INT64
154 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
1145 sqlite3_int64 iMin = SMALLEST_INT64; in unionFilter()
1168 if( iMax==SMALLEST_INT64 ){ in unionFilter()
1217 if( iMin!=SMALLEST_INT64 && iMin>pSrc->iMin ){ in unionFilter()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/ext/misc/
H A Dtotype.c63 #ifndef SMALLEST_INT64
64 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
149 *pNum = SMALLEST_INT64; in totypeAtoi64()
177 assert( (*pNum)==SMALLEST_INT64 ); in totypeAtoi64()
H A Dunionvtab.c153 #ifndef SMALLEST_INT64
154 # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) macro
1145 sqlite3_int64 iMin = SMALLEST_INT64; in unionFilter()
1168 if( iMax==SMALLEST_INT64 ){ in unionFilter()
1217 if( iMin!=SMALLEST_INT64 && iMin>pSrc->iMin ){ in unionFilter()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dutil.c618 x = (v==SMALLEST_INT64) ? ((u64)1)<<63 : (u64)-v; in sqlite3Int64ToText()
723 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
756 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
1434 testcase( iB==SMALLEST_INT64+1 ); in sqlite3SubInt64()
1435 if( iB==SMALLEST_INT64 ){ in sqlite3SubInt64()
1452 if( iA<SMALLEST_INT64/iB ) return 1; in sqlite3MulInt64()
1455 if( iB<SMALLEST_INT64/iA ) return 1; in sqlite3MulInt64()
1457 if( iB==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
1458 if( iA==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
H A Dvdbemem.c564 static const i64 minInt = SMALLEST_INT64; in doubleToInt64()
671 if( pMem->u.r==ix && ix>SMALLEST_INT64 && ix<LARGEST_INT64 ){ in sqlite3VdbeIntegerAffinity()
1562 }else if( pVal->u.i==SMALLEST_INT64 ){ in valueFromExpr()
1564 pVal->u.r = -(double)SMALLEST_INT64; in valueFromExpr()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dutil.c608 x = (v==SMALLEST_INT64) ? ((u64)1)<<63 : (u64)-v; in sqlite3Int64ToText()
713 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
746 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
1424 testcase( iB==SMALLEST_INT64+1 ); in sqlite3SubInt64()
1425 if( iB==SMALLEST_INT64 ){ in sqlite3SubInt64()
1442 if( iA<SMALLEST_INT64/iB ) return 1; in sqlite3MulInt64()
1445 if( iB<SMALLEST_INT64/iA ) return 1; in sqlite3MulInt64()
1447 if( iB==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
1448 if( iA==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
H A Dvdbemem.c564 static const i64 minInt = SMALLEST_INT64; in doubleToInt64()
671 if( pMem->u.r==ix && ix>SMALLEST_INT64 && ix<LARGEST_INT64 ){ in sqlite3VdbeIntegerAffinity()
1562 }else if( pVal->u.i==SMALLEST_INT64 ){ in valueFromExpr()
1564 pVal->u.r = -(double)SMALLEST_INT64; in valueFromExpr()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dutil.c675 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
708 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
1369 testcase( iB==SMALLEST_INT64+1 ); in sqlite3SubInt64()
1370 if( iB==SMALLEST_INT64 ){ in sqlite3SubInt64()
1387 if( iA<SMALLEST_INT64/iB ) return 1; in sqlite3MulInt64()
1390 if( iB<SMALLEST_INT64/iA ) return 1; in sqlite3MulInt64()
1392 if( iB==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
1393 if( iA==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
H A Dvdbemem.c555 static const i64 minInt = SMALLEST_INT64; in doubleToInt64()
662 if( pMem->u.r==ix && ix>SMALLEST_INT64 && ix<LARGEST_INT64 ){ in sqlite3VdbeIntegerAffinity()
1561 }else if( pVal->u.i==SMALLEST_INT64 ){ in valueFromExpr()
1563 pVal->u.r = -(double)SMALLEST_INT64; in valueFromExpr()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dutil.c606 *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; in sqlite3Atoi64()
1302 testcase( iB==SMALLEST_INT64+1 ); in sqlite3SubInt64()
1303 if( iB==SMALLEST_INT64 ){ in sqlite3SubInt64()
1320 if( iA<SMALLEST_INT64/iB ) return 1; in sqlite3MulInt64()
1323 if( iB<SMALLEST_INT64/iA ) return 1; in sqlite3MulInt64()
1325 if( iB==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
1326 if( iA==SMALLEST_INT64 ) return 1; in sqlite3MulInt64()
H A Dvdbemem.c463 static const i64 minInt = SMALLEST_INT64; in doubleToInt64()
558 if( pMem->u.r==ix && ix>SMALLEST_INT64 && ix<LARGEST_INT64 ){ in sqlite3VdbeIntegerAffinity()
1380 }else if( pVal->u.i==SMALLEST_INT64 ){ in valueFromExpr()
1381 pVal->u.r = -(double)SMALLEST_INT64; in valueFromExpr()
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dutil.c484 *pNum = SMALLEST_INT64; in sqlite3Atoi64()
515 assert( (*pNum)==SMALLEST_INT64 ); in sqlite3Atoi64()
1108 testcase( iB==SMALLEST_INT64+1 ); in sqlite3SubInt64()
1109 if( iB==SMALLEST_INT64 ){ in sqlite3SubInt64()
H A Dvdbemem.c333 static const i64 minInt = SMALLEST_INT64; in doubleToInt64()
428 if( pMem->r==(double)pMem->u.i && pMem->u.i>SMALLEST_INT64 in sqlite3VdbeIntegerAffinity()
1080 if( pVal->u.i==SMALLEST_INT64 ){ in sqlite3ValueFromExpr()
/dports/databases/sqlite3/sqlite-src-3350500/ext/fts3/
H A Dfts3Int.h200 #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/ext/fts3/
H A Dfts3Int.h200 #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/ext/fts3/
H A Dfts3Int.h200 #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
/dports/databases/sqlcipher/sqlcipher-3.4.2/ext/fts5/
H A Dfts5Int.h48 # define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
/dports/databases/sqlite3/sqlite-src-3350500/ext/fts5/
H A Dfts5Int.h48 # define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/ext/fts5/
H A Dfts5Int.h48 # define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/ext/fts5/
H A Dfts5Int.h48 # define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) macro

12345678910