Searched refs:sqlite3CtypeMap (Results 1 – 1 of 1) sorted by relevance
19190 # define sqlite3Isspace(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x01)19191 # define sqlite3Isalnum(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x06)19192 # define sqlite3Isalpha(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x02)19193 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04)19194 # define sqlite3Isxdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x08)19196 # define sqlite3Isquote(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x80)19840 SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[]; variable21374 SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[256] = {89585 sqlite3VdbeSerialGet((u8*)sqlite3CtypeMap, t, pDest);165501 #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0)[all …]