Home
last modified time | relevance | path

Searched refs:sqlite3AtoF (Results 1 – 13 of 13) sorted by relevance

/sqlite-3.40.0/test/
H A Datof1.test12 # Tests of the sqlite3AtoF() function.
64 # When running sqlite3AtoF() on a blob with an odd number of bytes using
H A Dnan.test196 # Verify that the sqlite3AtoF routine is able to handle extreme
/sqlite-3.40.0/src/
H A Ddate.c391 }else if( sqlite3AtoF(zDate, &r, sqlite3Strlen30(zDate), SQLITE_UTF8)>0 ){ in parseDateOrTime()
787 && sqlite3AtoF(&z[8], &r, sqlite3Strlen30(&z[8]), SQLITE_UTF8)>0 in parseModifier()
846 if( sqlite3AtoF(z, &r, n, SQLITE_UTF8)<=0 ){ in parseModifier()
H A Dwhereexpr.c274 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); in isLikeOrGlob()
280 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); in isLikeOrGlob()
H A Dvdbemem.c647 sqlite3AtoF(pMem->z, &val, pMem->n, pMem->enc); in memRealValue()
781 rc = sqlite3AtoF(pMem->z, &pMem->u.r, pMem->n, pMem->enc); in sqlite3VdbeMemNumerify()
H A Dfunc.c433 sqlite3AtoF(zBuf, &r, sqlite3Strlen30(zBuf), SQLITE_UTF8); in roundFunc()
1071 sqlite3AtoF(zVal, &r2, pStr->nChar, SQLITE_UTF8); in sqlite3QuoteValue()
H A Dutil.c440 int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){ in sqlite3AtoF() function
H A Dresolve.c839 sqlite3AtoF(p->u.zToken, &r, sqlite3Strlen30(p->u.zToken), SQLITE_UTF8); in exprProbability()
H A Djson.c583 sqlite3AtoF(z, &r, sqlite3Strlen30(z), SQLITE_UTF8); in jsonReturn()
H A DsqliteInt.h4940 int sqlite3AtoF(const char *z, double*, int, u8);
H A Dvdbe.c346 rc = sqlite3AtoF(pRec->z, &rValue, pRec->n, enc); in applyNumericAffinity()
457 rc = sqlite3AtoF(pMem->z, &pMem->u.r, pMem->n, pMem->enc); in computeNumericType()
H A Dexpr.c3676 sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); in codeReal()
/sqlite-3.40.0/ext/rtree/
H A Dgeopoly.c203 (void)sqlite3AtoF((const char*)p->z, &r, j, SQLITE_UTF8); in geopolyParseNumber()