Searched refs:zIn (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c11143 ** Assuming zIn points to the first byte of a UTF-8 character,
11144 ** advance zIn to point to the first byte of the next UTF-8 character.
11146 #define SQLITE_SKIP_UTF8(zIn) { \
11147 if( (*(zIn++))>=0xc0 ){ \
11148 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
20161 #define READ_UTF16LE(zIn, TERM, c){ \
20162 c = (*zIn++); \
20163 c += ((*zIn++)<<8); \
20165 int c2 = (*zIn
20219 sqlite3Utf8Read( const unsigned char *zIn, const unsigned char **pzNext ) argument
20260 unsigned char *zIn; /* Input iterator */ local
20439 sqlite3Utf8CharLen(const char *zIn, int nByte) argument
20469 sqlite3Utf8To8(unsigned char *zIn) argument
20541 sqlite3Utf16ByteLen(const void *zIn, int nChar) argument
56718 const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; local
80161 sqlite3AffinityType(const char *zIn) argument
85114 const unsigned char *zIn; /* Input string */ local
85207 const u8 *zIn; local
120114 const char *zIn = z; local
121181 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
121228 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]

Completed in 284 milliseconds