Lines Matching +full:0 +full:x22
5 * Access order is always 0x22 (=offset), 0x23 (=value)
8 * setCx86(CX86_CCR2, getCx86(CX86_CCR2) | 0x88);
11 * outb((CX86_CCR2), 0x22);
13 * outb((CX86_CCR2), 0x22);
14 * inb(0x23);
15 * }) | 0x88), 0x23);
16 * } while (0);
18 * which in fact violates the access order (= 0x22, 0x22, 0x23, 0x23).
23 outb(reg, 0x22); in getCx86()
24 return inb(0x23); in getCx86()
29 outb(reg, 0x22); in setCx86()
30 outb(data, 0x23); in setCx86()
33 #define getCx86_old(reg) ({ outb((reg), 0x22); inb(0x23); })
36 outb((reg), 0x22); \
37 outb((data), 0x23); \
38 } while (0)