Lines Matching refs:byte
9 #define IS_R1(byte) (( (byte) & 0xc0) == 0)
10 #define IS_R2(byte) (((byte) & 0xf8) == 0x40)
11 #define IS_R3(byte) (((byte) & 0xfc) == 0x60)
12 #define IS_P1(byte) (((byte) & 0xe0) == 0x80)
13 #define IS_P2(byte) (((byte) & 0xf0) == 0xa0)
14 #define IS_P3(byte) (((byte) & 0xf8) == 0xb0)
15 #define IS_P4(byte) ((byte) == (char) 0xb8)
16 #define IS_P5(byte) ((byte) == (char) 0xb9)
17 #define IS_P6(byte) (((byte) & 0xe0) == 0xc0)
18 #define IS_P7(byte) (((byte) & 0xf0) == 0xe0)
19 #define IS_P8(byte) ((byte) == (char) 0xf0)
20 #define IS_P9(byte) ((byte) == (char) 0xf1)
21 #define IS_P10(byte) ((byte) ==(char) 0xff)
22 #define IS_B1(byte) (((byte) & 0xc0) == 0x80)
23 #define IS_B2(byte) (((byte) & 0xe0) == 0xc0)
24 #define IS_B3(byte) ((byte) == (char) 0xe0)
25 #define IS_B4(byte) (((byte) & 0xf7) == 0xf0)
26 #define IS_X1(byte) ((byte) == (char) 0xf9)
27 #define IS_X2(byte) ((byte) == (char) 0xfa)
28 #define IS_X3(byte) ((byte) == (char) 0xfb)
29 #define IS_X4(byte) ((byte) == (char) 0xfc)