Lines Matching refs:x100
16 u8 = 0x100;
19 /* expect+1: warning: constant 0x100 truncated by conversion, op '&=' [306] */
20 u8 &= 0x100;
22 u8 = u8 & 0x100;
25 /* expect+1: warning: constant 0x100 truncated by conversion, op '|=' [306] */
26 u8 |= 0x100;
28 u8 = u8 | 0x100;
31 /* expect+1: warning: constant 0x100 truncated by conversion, op '&=' [306] */
32 s8 &= 0x100;
34 s8 = s8 & 0x100;
36 /* expect+1: warning: constant 0x100 truncated by conversion, op '|=' [306] */
37 s8 |= 0x100;
39 s8 = s8 | 0x100;