HomeSort by relevance Sort by last modified time
    Searched refs:Global (Results 1 - 25 of 314) 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];
2002-08-02-UnionTest.c 11 union X Global;
12 Global.B = (void*)123; /* Interesting part */
13 return Global;
  /external/compiler-rt/test/tsan/
tiny_race.c 5 int Global;
9 Global = 42;
16 Global = 43;
18 return Global;
blacklist2.cc 12 int Global;
19 Global++;
26 Global--;
35 Global--;
ignore_sync.cc 8 int Global;
14 Global++;
24 Global++;
simple_race.cc 5 int Global;
8 Global++;
13 Global--;
benign_race.cc 6 int Global;
19 Global = 42;
26 &Global, sizeof(Global), "Race on Global");
33 Global = 43;
atomic_stack.cc 5 int Global;
9 __atomic_fetch_add(&Global, 1, __ATOMIC_RELAXED);
14 Global++;
blacklist.cc 8 int Global;
11 Global++;
16 Global--;
default_options.cc 9 int Global;
12 Global = 42;
17 Global = 43;
simple_race.c 6 int Global;
10 Global = 42;
15 Global = 43;
suppressions_race.cc 6 int Global;
10 Global = 42;
15 Global = 43;
suppressions_race2.cc 6 int Global;
9 Global = 42;
15 Global = 43;
thread_name2.cc 6 int Global;
10 Global++;
16 Global--;
aligned_vs_unaligned_race.cc 10 uint64_t Global[2];
13 Global[1]++;
18 char *p1 = reinterpret_cast<char *>(&Global[0]);
ignore_race.cc 6 int Global;
16 Global = 42;
26 Global = 43;
mutexset1.cc 6 int Global;
12 Global++;
18 Global--;
mutexset2.cc 6 int Global;
11 Global++;
18 Global--;
mutexset3.cc 6 int Global;
14 Global++;
21 Global--;
mutexset4.cc 6 int Global;
13 Global++;
21 Global--;
mutexset5.cc 6 int Global;
13 Global++;
20 Global--;
  /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/clang/test/CodeGenCXX/
internal-linkage.cpp 3 struct Global { Global(); };
10 // CHECK: @_ZN12_GLOBAL__N_15anon0E = internal global
11 Global anon0;
14 // CHECK: @anon1 = internal global
17 // CHECK: @anon2 = internal global
44 // CHECK: @_ZL21static_nonconst_xyzzy = internal global
54 // CHECK: @extern_nonconst_xyzzy = global
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorkerGlobalScope.idl 33 Global=(Worker,SharedWorker)

Completed in 642 milliseconds

1 2 3 4 5 6 7 8 91011>>