Lines Matching defs:sqlite3Atoi64
11866 SQLITE_PRIVATE int sqlite3Atoi64(const char*, i64*, int, u8);
21458 return !sqlite3Atoi64(z, pResult, length, enc);
21511 SQLITE_PRIVATE int sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc){
21577 ** This is different from sqlite3Atoi64() which requires the
58717 sqlite3Atoi64(pMem->z, &value, pMem->n, pMem->enc);
58822 if( 0==sqlite3Atoi64(pMem->z, &pMem->u.i, pMem->n, pMem->enc) ){
64592 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
74957 int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8);
76371 c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8);
92688 sqlite3Atoi64(zRight, &iLimit, 1000000, SQLITE_UTF8);
115452 if( z && sqlite3Atoi64(z, &v, sqlite3Strlen30(z), SQLITE_UTF8)==SQLITE_OK ){