Lines Matching defs:large_t
1 typedef unsigned int __attribute__((bitwise)) large_t;
2 #define LBIT ((__attribute__((force)) large_t) 1)
4 _Bool lfoo(large_t x) { return x; }
5 _Bool qfoo(large_t x) { _Bool r = x; return r; }
6 _Bool xfoo(large_t x) { return (_Bool)x; }
7 _Bool lbar(large_t x) { return ~x; }
8 _Bool qbar(large_t x) { _Bool r = ~x; return r; }
9 _Bool xbar(large_t x) { return (_Bool)~x; }
10 _Bool lbaz(large_t x) { return !x; }
11 _Bool qbaz(large_t x) { _Bool r = !x; return r; }
12 _Bool xbaz(large_t x) { return (_Bool)!x; }
13 _Bool lqux(large_t x) { return x & LBIT; }
14 _Bool qqux(large_t x) { _Bool r = x & LBIT; return r; }
15 _Bool xqux(large_t x) { return (_Bool)(x & LBIT); }