OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GLOB
(Results
1 - 11
of
11
) sorted by null
/external/compiler-rt/lib/asan/lit_tests/TestCases/SharedLibs/
shared-lib-test-so.cc
16
int
GLOB
[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
20
GLOB
[index]++;
/external/compiler-rt/lib/tsan/lit_tests/
write_in_reader_lock.cc
6
int
GLOB
;
13
GLOB
++;
23
volatile int x =
GLOB
;
load_shared_lib.cc
15
int
GLOB
= 0;
18
GLOB
++;
/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/compiler-rt/lib/asan/tests/
asan_mac_test.cc
40
void *
GLOB
;
43
GLOB
= CFAllocatorAllocate(NULL, 100, /*hint*/0);
48
char *p = (char*)
GLOB
;
50
CFAllocatorDeallocate(NULL,
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;
340
GLOB
= 2;
344
FAST_MODE_INIT(&
GLOB
);
345
ANNOTATE_EXPECT_RACE_FOR_TSAN(&
GLOB
, "test01. TP.");
346
ANNOTATE_TRACE_MEMORY(&
GLOB
);
349
const int tmp =
GLOB
;
358
int
GLOB
= 0
[
all
...]
Completed in 754 milliseconds