Searched refs:sqlite3Isdigit (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c11195 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
11203 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
13309 if( !sqlite3Isdigit(*zDate) ){
13391 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){
13394 while( sqlite3Isdigit(*zDate) ){
13877 if( !sqlite3Isdigit(*z2) ) z2++;
20911 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20918 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++, d++;
20926 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20931 while( z<zEnd && sqlite3Isdigit(*
[all...]

Completed in 338 milliseconds