Home
last modified time | relevance | path

Searched refs:nDigits (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dtotype.c214 int nDigits = 0; in totypeAtoF() local
232 while( z<zEnd && z[0]=='0' ) z++, nDigits++; in totypeAtoF()
237 z++, nDigits++; in totypeAtoF()
242 while( z<zEnd && totypeIsdigit(*z) ) z++, nDigits++, d++; in totypeAtoF()
252 z++, nDigits++, d--; in totypeAtoF()
255 while( z<zEnd && totypeIsdigit(*z) ) z++, nDigits++; in totypeAtoF()
280 if( nDigits && eValid ){ in totypeAtoF()
298 result = (sign<0 && nDigits) ? -(double)0 : (double)0; in totypeAtoF()
350 return z>=zEnd && nDigits>0 && eValid && nonNum==0; in totypeAtoF()
/sqlite-3.40.0/src/
H A Dshell.c.in7542 int nDigits = (hasDupes)? db_int(*pDb, zColDigits) : 0; local
7552 sqlite3_bind_int(pStmt, 1, nDigits);