Lines Matching defs:bool
2 typedef _Bool bool;
5 static bool bni(uint a) { return !a; }
8 static bool boii(uint a, uint b) { return a || b; }
9 static bool baii(uint a, uint b) { return a && b; }
12 static bool boiii(uint a, uint b, uint c) { return a || b || c; }
13 static bool baiii(uint a, uint b, uint c) { return a && b && c; }
15 static uint inb(bool a) { return !a; }
16 static bool bnb(bool a) { return !a; }
17 static uint iobb(bool a, bool b) { return a || b; }
18 static uint iabb(bool a, bool b) { return a && b; }
19 static bool bobb(bool a, bool b) { return a || b; }
20 static bool babb(bool a, bool b) { return a && b; }
21 static uint iobbb(bool a, bool b, bool c) { return a || b || c; }
22 static uint iabbb(bool a, bool b, bool c) { return a && b && c; }
23 static bool bobbb(bool a, bool b, bool c) { return a || b || c; }
24 static bool babbb(bool a, bool b, bool c) { return a && b && c; }
27 * check-name: bool-simplify2