OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tls_end_
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/lsan/
lsan_thread.h
34
uptr tls_end() { return
tls_end_
; }
42
tls_begin_,
tls_end_
;
member in class:__lsan::ThreadContext
lsan_thread.cc
59
tls_end_
(0),
74
tls_end_
= args->tls_end;
/external/compiler-rt/lib/msan/
msan_thread.h
34
uptr tls_end() { return
tls_end_
; }
59
uptr
tls_end_
;
member in class:__msan::MsanThread
msan_thread.cc
28
tls_end_
= tls_begin_ + tls_size;
36
if (tls_begin_ !=
tls_end_
)
37
__msan_unpoison((void *)tls_begin_,
tls_end_
- tls_begin_);
/external/compiler-rt/lib/asan/
asan_thread.h
73
uptr tls_end() { return
tls_end_
; }
153
uptr
tls_end_
;
member in class:__asan::AsanThread
asan_thread.cc
269
tls_end_
= tls_begin_ + tls_size;
278
if (tls_begin_ !=
tls_end_
)
279
PoisonShadow(tls_begin_,
tls_end_
- tls_begin_, 0);
Completed in 912 milliseconds