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

/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c11369 ** Assuming zIn points to the first byte of a UTF-8 character,
11370 ** advance zIn to point to the first byte of the next UTF-8 character.
11372 #define SQLITE_SKIP_UTF8(zIn) { \
11373 if( (*(zIn++))>=0xc0 ){ \
11374 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
20527 #define READ_UTF16LE(zIn, TERM, c){ \
20528 c = (*zIn++); \
20529 c += ((*zIn++)<<8); \
20531 int c2 = (*zIn
20585 sqlite3Utf8Read( const unsigned char *zIn, const unsigned char **pzNext ) argument
20626 unsigned char *zIn; /* Input iterator */ local
20805 sqlite3Utf8CharLen(const char *zIn, int nByte) argument
20835 sqlite3Utf8To8(unsigned char *zIn) argument
20907 sqlite3Utf16ByteLen(const void *zIn, int nChar) argument
57771 const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; local
82098 sqlite3AffinityType(const char *zIn) argument
87069 const unsigned char *zIn; /* Input string */ local
87162 const u8 *zIn; local
122529 const char *zIn = z; local
123598 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
123645 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]

Completed in 334 milliseconds