HomeSort by relevance Sort by last modified time
    Searched refs:Global (Results 1 - 25 of 416) 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/lib/tsan/lit_tests/
tiny_race.c 5 int Global;
9 Global = 42;
16 Global = 43;
18 return Global;
simple_race.c 5 int Global;
8 Global = 42;
13 Global = 43;
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 9 int Global;
12 Global++;
17 Global--;
suppressions_race.cc 6 int Global;
10 Global = 42;
15 Global = 43;
suppressions_race2.cc 6 int Global;
9 Global = 42;
15 Global = 43;
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--;
mutexset7.cc 6 int Global;
11 Global++;
19 Global--;
mutexset8.cc 6 int Global;
12 Global++;
18 Global--;
race_on_mutex.c 8 int Global;
13 Global = 42;
21 Global = 43;
  /external/compiler-rt/BlocksRuntime/tests/
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]);
  /frameworks/base/services/java/com/android/server/wifi/
WifiSettingsStore.java 28 /* Values tracked in Settings.Global.WIFI_ON */
138 Settings.Global.putInt(cr, Settings.Global.WIFI_ON, state);
143 String airplaneModeRadios = Settings.Global.getString(mContext.getContentResolver(),
144 Settings.Global.AIRPLANE_MODE_RADIOS);
146 || airplaneModeRadios.contains(Settings.Global.RADIO_WIFI);
151 String toggleableRadios = Settings.Global.getString(mContext.getContentResolver(),
152 Settings.Global.AIRPLANE_MODE_TOGGLEABLE_RADIOS);
154 && toggleableRadios.contains(Settings.Global.RADIO_WIFI);
168 wifiSavedState = Settings.Global.getInt(cr, Settings.Global.WIFI_SAVED_STATE)
    [all...]
  /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/v8/test/cctest/
test-deoptimization.cc 100 // Abort any ongoing incremental marking to make sure that all weak global
131 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value());
132 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
147 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value());
148 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
169 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value());
170 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
186 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value());
187 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
209 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value())
    [all...]

Completed in 117 milliseconds

1 2 3 4 5 6 7 8 91011>>