HomeSort by relevance Sort by last modified time
    Searched refs:_Bool (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/clang/test/CodeGen/
2002-12-15-GlobalBoolTest.c 4 _Bool X = 0;
bool-convert.c 2 // All of these should uses the memory representation of _Bool
6 struct teststruct1 {_Bool a, b;} test1;
9 _Bool* test2;
12 _Bool test3[10];
15 _Bool (*test4)[];
20 _Bool test5;
23 _Bool test6[x];
bool_test.c 4 int boolsize = sizeof(_Bool);
7 void f(_Bool *x, _Bool *y) {
_Bool-conversion.c 7 static _Bool f0_0(void *a0) { return (_Bool) a0; }
10 _Bool f1(void) {
11 return (_Bool) ({ void (*x)(); x = 0; });
bool-init.c 5 _Bool test = &test;
2003-08-17-DeadCodeShortCircuit.c 3 int test(_Bool pos, _Bool color) {
bool-bitfield.c 16 _Bool input_parallelch2:1;
17 _Bool cliplmt_ch1:1;
18 _Bool cliplmt_ch2:1;
19 _Bool gate_ch1:1;
20 _Bool gate_ch2:1;
21 _Bool mute_ch1:1;
22 _Bool mute_ch2:1;
23 _Bool brownout:1;
24 _Bool power_on:1;
25 _Bool pwrup_mute:1
    [all...]
ppc64-inline-asm.c 3 _Bool test_wc_i1(_Bool b1, _Bool b2) {
4 _Bool o;
2008-01-07-UnusualIntSize.c 11 _Bool test(void) {
2005-04-09-ComplexOps.c 7 _Bool EQ(double __complex A, double __complex B) { return A == B; }
8 _Bool NE(double __complex A, double __complex B) { return A != B; }
BasicInstrs.c 19 _Bool setlt(int X, int Y) {
23 _Bool setgt(int X, int Y) {
globalinit.c 30 _Bool booltest = 0;
32 static _Bool booltest3 = 4;
aarch64-type-sizes.c 69 return sizeof(_Bool);
bitfield-assign.c 18 _Bool f1 : 1;
mips-type-sizes.c 72 return sizeof(_Bool);
  /external/clang/test/Sema/
ppc-bool.c 3 extern __typeof(+(_Bool)0) should_be_int;
warn-bad-function-cast.c 12 _Bool bf(void);
32 (_Bool)bf();
38 (_Bool)if3(); /* expected-warning {{cast from function call of type 'long' to non-matching type '_Bool'}} */
43 (int)bf(); /* expected-warning {{cast from function call of type '_Bool' to non-matching type 'int'}} */
  /external/clang/test/FixIt/
fixit-uninit.c 4 _Bool test_bool_no_false() {
5 _Bool var; // expected-note {{initialize}}
10 #define bool _Bool
  /external/clang/lib/Headers/
stdbool.h 31 #define bool _Bool
35 /* Define _Bool, bool, false, true as a GNU extension. */
36 #define _Bool bool
  /external/clang/test/SemaCXX/
pr9812.c 3 #define bool _Bool
17 _Bool signed; // expected-error {{'_Bool' cannot be signed or unsigned}} expected-warning {{declaration does not declare anything}}
  /external/jemalloc/include/msvc_compat/C99/
stdbool.h 6 /* MSVC doesn't define _Bool or bool in C, but does have BOOL */
8 /* Clang-cl uses MSVC headers, so needs msvc_compat, but has _Bool as
11 typedef BOOL _Bool;
14 #define bool _Bool
  /external/mesa3d/include/c99/
stdbool.h 35 #define bool _Bool
37 /* For compilers that don't have the builtin _Bool type. */
39 typedef unsigned char _Bool;
  /external/bison/lib/
stdbool.in.h 39 - <stdbool.h> must be #included before the '_Bool' type can be used.
41 - You cannot assume that _Bool is a typedef; it might be a macro.
46 - In C99, casts and automatic conversions to '_Bool' or 'bool' are
50 give the expected result when converted to _Bool' or 'bool'.
52 - C99 allows the use of (_Bool)0.0 in constant expressions, but
55 Also, it is suggested that programs use 'bool' rather than '_Bool';
64 # include <OS.h> /* defines bool but not _Bool */
70 # define _Bool bool
75 /* If the compiler already has both 'bool' and '_Bool', we can assume they
78 typedef bool _Bool;
    [all...]
  /external/chromium_org/third_party/mesa/src/include/c99/
stdbool.h 35 #define bool _Bool
37 /* For compilers that don't have the builtin _Bool type. */
40 typedef unsigned char _Bool;
  /external/clang/test/Analysis/
svalbuilder-logic.c 14 _Bool a = getBool();

Completed in 4413 milliseconds

1 2 3