Home | History | Annotate | Download | only in dist

Lines Matching defs:charMap

138714 ** The charMap() macro maps alphabetic characters (only) into their
138723 # define charMap(X) sqlite3UpperToLower[(unsigned char)X]
138726 # define charMap(X) ebcdicToAscii[(unsigned char)X]
138898 i = ((charMap(z[0])*4) ^ (charMap(z[n-1])*3) ^ n) % 127;