Home | History | Annotate | Download | only in dist

Lines Matching refs:x3F

17970     *zOut++ = 0x80 + (u8)(c & 0x3F);                   \
17974 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17975 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17978 *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \
17979 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17980 *zOut++ = 0x80 + (u8)(c & 0x3F); \
18060 c = (c<<6) + (0x3f & *(zIn++)); \
18079 c = (c<<6) + (0x3f & *(zIn++));