HomeSort by relevance Sort by last modified time
    Searched defs:Global (Results 1 - 25 of 500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-11-03-AddrArrayElement.c 6 char Global[100];
10 return &Global[i];
  /external/compiler-rt/test/BlocksRuntime/
voidarg.c 20 int Global;
22 void (^globalBlock)() = ^{ ++Global; }; // should be void (^gb)(void) = ...
nestedimport.c 21 int Global = 0;
32 callVoidVoid(^{ Global = i; });
38 if (Global != 1) {
39 printf("%s: error, Global not set to captured value\n", argv[0]);
  /external/compiler-rt/test/tsan/
ignore_race.cc 4 int Global;
14 Global = 42;
26 Global = 43;
tiny_race.c 4 int Global;
8 Global = 42;
16 Global = 43;
19 return Global;
atomic_stack.cc 4 int Global;
8 __atomic_fetch_add(&Global, 1, __ATOMIC_RELAXED);
13 Global++;
benign_race.cc 4 int Global;
17 Global = 42;
26 &Global, sizeof(Global), "Race on Global");
33 Global = 43;
blacklist.cc 8 int Global;
11 Global++;
16 Global--;
ignore_sync.cc 8 int Global;
14 Global++;
24 Global++;
race_top_suppression.cc 7 int Global;
15 TopFunction(&Global);
23 Global--;
simple_race.c 4 int Global;
8 Global = 42;
13 Global = 43;
simple_race.cc 4 int Global;
8 Global++;
13 Global--;
suppressions_race.cc 4 int Global;
8 Global = 42;
13 Global = 43;
suppressions_race2.cc 4 int Global;
7 Global = 42;
14 Global = 43;
annotate_happens_before.cc 28 int Global;
33 Global++;
38 Global--;
blacklist2.cc 10 int Global;
17 Global++;
24 Global--;
33 Global--;
default_options.cc 9 int Global;
12 Global = 42;
17 Global = 43;
mutexset1.cc 4 int Global;
10 Global++;
16 Global--;
mutexset2.cc 4 int Global;
9 Global++;
17 Global--;
mutexset3.cc 4 int Global;
12 Global++;
19 Global--;
mutexset4.cc 4 int Global;
11 Global++;
20 Global--;
mutexset5.cc 4 int Global;
11 Global++;
18 Global--;
mutexset7.cc 4 int Global;
9 Global++;
17 Global--;
mutexset8.cc 4 int Global;
10 Global++;
16 Global--;
  /external/compiler-rt/test/tsan/Darwin/
osspinlock-norace.cc 6 int Global;
11 Global++;

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011>>