Home | History | Annotate | Download | only in dist

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
58745 sqlite3Atoi64(pMem->z, &value, pMem->n, pMem->enc);
58850 if( 0==sqlite3Atoi64(pMem->z, &pMem->u.i, pMem->n, pMem->enc) ){
64620 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
74993 int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8);
76407 c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8);
92724 sqlite3Atoi64(zRight, &iLimit, 1000000, SQLITE_UTF8);
115488 if( z && sqlite3Atoi64(z, &v, sqlite3Strlen30(z), SQLITE_UTF8)==SQLITE_OK ){