Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dspeedtest1.c597 unsigned char zChar[2]; in speedtest1_run() local
600 zChar[0] = "0123456789abcdef"[aBlob[iBlob]>>4]; in speedtest1_run()
601 zChar[1] = "0123456789abcdef"[aBlob[iBlob]&15]; in speedtest1_run()
602 HashUpdate(zChar,2); in speedtest1_run()
/sqlite-3.40.0/src/
H A Dbuild.c1657 const char *zChar = 0; in sqlite3AffinityType() local
1665 zChar = zIn; in sqlite3AffinityType()
1673 if( zIn[0]=='(' ) zChar = zIn; in sqlite3AffinityType()
1696 if( zChar ){ in sqlite3AffinityType()
1697 while( zChar[0] ){ in sqlite3AffinityType()
1698 if( sqlite3Isdigit(zChar[0]) ){ in sqlite3AffinityType()
1700 sqlite3GetInt32(zChar, &v); in sqlite3AffinityType()
1703 zChar++; in sqlite3AffinityType()