Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.c20581 # define sqlite3Isspace(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x01)
20582 # define sqlite3Isalnum(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x06)
20583 # define sqlite3Isalpha(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x02)
20584 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04)
20585 # define sqlite3Isxdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x08)
20587 # define sqlite3Isquote(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x80)
21315 SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[]; variable
22796 SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[256] = { variable
96290 sqlite3VdbeSerialGet((u8*)sqlite3CtypeMap, t, pDest);
178645 #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0)
[all …]