Searched defs:Global (Results 1 - 25 of 94) sorted by relevance

1234

/external/clang/test/CodeGen/
H A D2003-11-03-AddrArrayElement.c6 char Global[100]; variable
10 return &Global[i];
H A D2002-08-02-UnionTest.c11 union X Global; local
12 Global.B = (void*)123; /* Interesting part */
13 return Global;
/external/compiler-rt/test/BlocksRuntime/
H A Dvoidarg.c20 int Global; variable
22 void (^globalBlock)() = ^{ ++Global; }; // should be void (^gb)(void) = ...
H A Dnestedimport.c21 int Global = 0; variable
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/
H A Dignore_race.cc4 int Global; variable
14 Global = 42;
26 Global = 43;
H A Dtiny_race.c4 int Global; variable
8 Global = 42;
16 Global = 43;
19 return Global;
H A Datomic_stack.cc4 int Global; variable
8 __atomic_fetch_add(&Global, 1, __ATOMIC_RELAXED);
13 Global++;
H A Dbenign_race.cc4 int Global; variable
17 Global = 42;
26 &Global, sizeof(Global), "Race on Global");
33 Global = 43;
H A Dblacklist.cc8 int Global; variable
11 Global++;
16 Global--;
H A Ddefault_options.cc9 int Global; variable
12 Global = 42;
17 Global = 43;
H A Dignore_sync.cc8 int Global; variable
14 Global++;
24 Global++;
H A Dmutexset1.cc4 int Global; variable
10 Global++;
16 Global--;
H A Dmutexset2.cc4 int Global; variable
9 Global++;
17 Global--;
H A Dmutexset8.cc4 int Global; variable
10 Global++;
16 Global--;
H A Drace_on_barrier.c9 int Global; variable
H A Drace_on_barrier2.c12 int Global; variable
H A Drace_on_mutex.c5 int Global; variable
14 Global = 43;
25 Global = 42;
H A Drace_top_suppression.cc7 int Global; variable
15 TopFunction(&Global);
23 Global--;
H A Dsimple_race.c4 int Global; variable
8 Global = 42;
13 Global = 43;
H A Dsimple_race.cc4 int Global; variable
8 Global++;
13 Global--;
H A Dsuppressions_race.cc4 int Global; variable
8 Global = 42;
13 Global = 43;
H A Dsuppressions_race2.cc4 int Global; variable
7 Global = 42;
14 Global = 43;
H A Dthread_name2.cc12 long long Global; variable
16 Global++;
22 Global--;
H A Daligned_vs_unaligned_race.cc7 uint64_t Global[2]; variable
10 Global[1]++;
17 char *p1 = reinterpret_cast<char *>(&Global[0]);
/external/compiler-rt/test/tsan/Darwin/
H A Dosspinlock-norace.cc6 int Global; variable
11 Global++;

Completed in 2674 milliseconds

1234