HomeSort by relevance Sort by last modified time
    Searched defs:GLOB (Results 1 - 7 of 7) sorted by null

  /external/valgrind/unittest/
opt_tests.cc 39 int GLOB = 0;
42 GLOB++;
posix_tests.cc 63 // 1. Start(workers) a. read(GLOB)
68 // 5. write(GLOB)
71 int GLOB = 0;
75 CHECK(GLOB != 777);
95 GLOB = 2;
101 // ANNOTATE_EXPECT_RACE(&GLOB, "test11. FP. Fixed by MSMProp1.");
104 printf("\tGLOB=%d\n", GLOB);
111 int GLOB = 0;
115 GLOB = 1;
122 CHECK(GLOB==1)
    [all...]
windows_tests.cc 246 int GLOB = 42;
250 GLOB++;
257 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "PositiveTests.WindowsQueueUserWorkItemTest");
479 int GLOB = 42;
493 int value = Atomic_Read(&GLOB);
494 Atomic_Write(&GLOB, ~value);
demo_tests.cc 70 // In this test we have many different accesses to GLOB and only one access
72 int GLOB = 0;
81 MU1.Lock(); CHECK(GLOB >= 0); MU1.Unlock();
85 MU2.Lock(); CHECK(GLOB >= 0); MU2.Unlock();
89 MU1.Lock(); CHECK(GLOB >= 0); MU1.Unlock();
93 MU1.Lock(); GLOB++; MU1.Unlock();
114 int GLOB = 0;
117 void Worker1() { CHECK(GLOB >= 0); }
118 void Worker2() { MU.Lock(); GLOB=1; MU.Unlock();}
122 ANNOTATE_TRACE_MEMORY(&GLOB);
    [all...]
racecheck_unittest.cc 82 int GLOB = 0;
85 printf("\tGLOB=%d\n", GLOB);
93 int GLOB = 0;
96 GLOB = 1;
100 GLOB = 2;
104 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test01. TP.");
105 ANNOTATE_TRACE_MEMORY(&GLOB);
110 printf("\tGLOB=%d\n", GLOB);
118 int GLOB = 0;
119 // Two write accesses to GLOB are synchronized becaus
    [all...]
  /external/clang/test/CodeGen/
vla.c 77 static int GLOB;
80 GLOB = 0;
82 // CHECK: [[tmp_1:%.*]] = load i32* @GLOB, align 4
84 __typeof__(b[GLOB++]) c;
85 return GLOB;
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 319 int GLOB = 0;
322 printf("\tGLOB=%d\n", GLOB);
330 int GLOB = 0;
332 GLOB = 1;
338 GLOB = 2;
342 FAST_MODE_INIT(&GLOB);
343 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test01. TP.");
344 ANNOTATE_TRACE_MEMORY(&GLOB);
347 const int tmp = GLOB;
356 int GLOB = 0
    [all...]

Completed in 889 milliseconds