Searched refs:sqlite3CtypeMap (Results 1 – 1 of 1) sorted by relevance
12118 # define sqlite3Toupper(x) ((x)&~(sqlite3CtypeMap[(unsigned char)(x)]&0x20))12119 # define sqlite3Isspace(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x01)12120 # define sqlite3Isalnum(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x06)12121 # define sqlite3Isalpha(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x02)12122 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04)12123 # define sqlite3Isxdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x08)12618 SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[]; variable13024 SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[256] = { variable13556 && sqlite3CtypeMap[(unsigned char)azCompileOpt[i][n]]==0 in sqlite3_compileoption_used()118644 #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0)[all …]