Lines Matching defs:_BitInt
11 short _BitInt(43) a; // expected-error {{'short _BitInt' is invalid}} variable
15 const _BitInt(5) c = 3; variable
16 …const unsigned _BitInt(5) d; // expected-error {{default initialization of an object of const type… variable
17 unsigned _BitInt(5) e = 5; variable
24 unsigned _BitInt(0) k;// expected-error{{unsigned _BitInt must have a bit size of at least 1}} variable
25 unsigned _BitInt(1) l; variable
26 signed _BitInt(1) m; // expected-error{{signed _BitInt must have a bit size of at least 2}} variable
28 …constexpr _BitInt(6) n = 33; // expected-warning{{implicit conversion from 'int' to 'const _BitInt… variable
29 constexpr _BitInt(7) o = 33; variable
33 …unsigned _BitInt(0xFFFFFFFFFF) q; // expected-error {{unsigned _BitInt of bit sizes greater than 1… variable
68 constexpr _BitInt(3) b = 1; in Templates() local
70 constexpr _BitInt(9) d = 1; in Templates() local
91 _Complex _BitInt(3) Cmplx; variable
95 _Atomic _BitInt(4) TooSmallAtomic; variable
97 _Atomic _BitInt(9) NotPow2Atomic; variable
99 _Atomic _BitInt(128) JustRightAtomic; variable
105 unsigned _BitInt(sizeof(unsigned) * 8) x32_u = 1, y32_u = 1; in Ops() local
107 unsigned _BitInt(43) x43_u = 1, y43_u = 1; in Ops() local
108 unsigned _BitInt(4) x4_u = 1, y4_u = 1; in Ops() local