OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tls_var
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
use_tls_static.cc
11
__thread void *
tls_var
;
variable
14
tls_var
= malloc(1337);
15
fprintf(stderr, "Test alloc: %p.\n",
tls_var
);
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
unpoison_tls.cc
12
__thread int64_t
tls_var
[2];
variable
17
ASAN_POISON_MEMORY_REGION(&
tls_var
, sizeof(
tls_var
));
18
p_tls_var =
tls_var
;
23
assert(
tls_var
== p_tls_var);
Completed in 330 milliseconds