Home | History | Annotate | Download | only in dist

Lines Matching refs:x3F

17965     *zOut++ = 0x80 + (u8)(c & 0x3F);                   \
17969 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17970 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17973 *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \
17974 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17975 *zOut++ = 0x80 + (u8)(c & 0x3F); \
18055 c = (c<<6) + (0x3f & *(zIn++)); \
18074 c = (c<<6) + (0x3f & *(zIn++));