Lines Matching refs:byte
51 /* A 2 byte UTF-8 representation splits the characters 11 bits between
55 #define UTF8_GET_NAMING2(pages, byte) \
56 (namingBitmap[((pages)[(((byte)[0]) >> 2) & 7] << 3) \
57 + ((((byte)[0]) & 3) << 1) \
58 + ((((byte)[1]) >> 5) & 1)] \
59 & (1 << (((byte)[1]) & 0x1F)))
61 /* A 3 byte UTF-8 representation splits the characters 16 bits between
66 #define UTF8_GET_NAMING3(pages, byte) \
67 (namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
68 + ((((byte)[1]) >> 2) & 0xF)] \
70 + ((((byte)[1]) & 3) << 1) \
71 + ((((byte)[2]) >> 5) & 1)] \
72 & (1 << (((byte)[2]) & 0x1F)))
314 enum { /* UTF8_cvalN is value of masked first byte of N byte sequence */
1196 /* minN is minimum legal resulting value for N byte sequence */
1510 /* only a single byte available for auto-detection */
1512 /* a well-formed document entity must have more than one byte */
1527 case 0xEF: /* possibly first byte of UTF-8 BOM */
1599 - second byte is 0
1603 presented just with a single byte, we couldn't reliably determine