Lines Matching refs:u8

66     *zOut++ = (u8)(c&0xFF);                            \
69 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
70 *zOut++ = 0x80 + (u8)(c & 0x3F); \
73 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
74 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
75 *zOut++ = 0x80 + (u8)(c & 0x3F); \
77 *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \
78 *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \
79 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
80 *zOut++ = 0x80 + (u8)(c & 0x3F); \
86 *zOut++ = (u8)(c&0x00FF); \
87 *zOut++ = (u8)((c>>8)&0x00FF); \
89 *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
90 *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \
91 *zOut++ = (u8)(c&0x00FF); \
92 *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \
98 *zOut++ = (u8)((c>>8)&0x00FF); \
99 *zOut++ = (u8)(c&0x00FF); \
101 *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \
102 *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
103 *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \
104 *zOut++ = (u8)(c&0x00FF); \
182 SQLITE_NOINLINE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ in sqlite3VdbeMemTranslate()
211 u8 temp; in sqlite3VdbeMemTranslate()
218 zIn = (u8*)pMem->z; in sqlite3VdbeMemTranslate()
254 zIn = (u8*)pMem->z; in sqlite3VdbeMemTranslate()
379 u8 bom = 0; in sqlite3VdbeMemHandleBom()
383 u8 b1 = *(u8 *)pMem->z; in sqlite3VdbeMemHandleBom()
384 u8 b2 = *(((u8 *)pMem->z) + 1); in sqlite3VdbeMemHandleBom()
417 const u8 *z = (const u8*)zIn; in sqlite3Utf8CharLen()
418 const u8 *zTerm; in sqlite3Utf8CharLen()
422 zTerm = (const u8*)(-1); in sqlite3Utf8CharLen()
451 c = sqlite3Utf8Read((const u8**)&zIn); in sqlite3Utf8To8()
469 char *sqlite3Utf16to8(sqlite3 *db, const void *z, int nByte, u8 enc){ in sqlite3Utf16to8()
526 c = sqlite3Utf8Read((const u8**)&z); in sqlite3UtfSelfTest()