Searched refs:sqlite3AtoF (Results 1 – 13 of 13) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | atof1.test | 12 # Tests of the sqlite3AtoF() function. 64 # When running sqlite3AtoF() on a blob with an odd number of bytes using
|
| H A D | nan.test | 196 # Verify that the sqlite3AtoF routine is able to handle extreme
|
| /sqlite-3.40.0/src/ |
| H A D | date.c | 391 }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 D | whereexpr.c | 274 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); in isLikeOrGlob() 280 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); in isLikeOrGlob()
|
| H A D | vdbemem.c | 647 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 D | func.c | 433 sqlite3AtoF(zBuf, &r, sqlite3Strlen30(zBuf), SQLITE_UTF8); in roundFunc() 1071 sqlite3AtoF(zVal, &r2, pStr->nChar, SQLITE_UTF8); in sqlite3QuoteValue()
|
| H A D | util.c | 440 int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){ in sqlite3AtoF() function
|
| H A D | resolve.c | 839 sqlite3AtoF(p->u.zToken, &r, sqlite3Strlen30(p->u.zToken), SQLITE_UTF8); in exprProbability()
|
| H A D | json.c | 583 sqlite3AtoF(z, &r, sqlite3Strlen30(z), SQLITE_UTF8); in jsonReturn()
|
| H A D | sqliteInt.h | 4940 int sqlite3AtoF(const char *z, double*, int, u8);
|
| H A D | vdbe.c | 346 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 D | expr.c | 3676 sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); in codeReal()
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | geopoly.c | 203 (void)sqlite3AtoF((const char*)p->z, &r, j, SQLITE_UTF8); in geopolyParseNumber()
|