| /src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| msan_thread.cc | 26 &tls_begin_, &tls_size); local 28 tls_end_ = tls_begin_ + tls_size; 36 if (tls_begin_ != tls_end_) 37 __msan_unpoison((void *)tls_begin_, tls_end_ - tls_begin_);
|
| msan_thread.h | 33 uptr tls_begin() { return tls_begin_; } 58 uptr tls_begin_; member in class:__msan::MsanThread
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/ |
| lsan_posix.h | 34 uptr tls_begin() { return tls_begin_; } 39 uptr tls_begin_ = 0; member in class:__lsan::final
|
| lsan_posix.cpp | 40 tls_begin_ = args->tls_begin;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
| lsan_thread.h | 33 uptr tls_begin() { return tls_begin_; } 42 tls_begin_, tls_end_; member in class:__lsan::ThreadContext
|
| lsan_thread.cc | 48 tls_begin_(0), 63 tls_begin_ = args->tls_begin;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_thread.cpp | 92 if (tls_begin_ != tls_end_) 93 TagMemory(tls_begin_, tls_end_ - tls_begin_, 0);
|
| hwasan_thread.h | 47 uptr tls_begin() { return tls_begin_; } 82 uptr tls_begin_; member in class:__hwasan::Thread
|
| hwasan_fuchsia.cpp | 108 tls_end_ = tls_begin_ = 0;
|
| hwasan_linux.cpp | 403 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, &tls_begin_, local 406 tls_end_ = tls_begin_ + tls_size;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_thread.h | 79 uptr tls_begin() { return tls_begin_; } 161 uptr tls_begin_; member in class:__asan::AsanThread
|
| asan_thread.cc | 294 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size, &tls_begin_, local 297 tls_end_ = tls_begin_ + tls_size; 311 if (tls_begin_ != tls_end_) { 312 uptr tls_begin_aligned = RoundDownTo(tls_begin_, SHADOW_GRANULARITY);
|
| asan_rtems.cc | 128 tls_begin_ = options->tls_bottom;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_thread.h | 74 uptr tls_begin() { return tls_begin_; } 161 uptr tls_begin_; member in class:__asan::AsanThread
|
| asan_thread.cpp | 308 &tls_begin_, &tls_size); local 310 tls_end_ = tls_begin_ + tls_size; 324 if (tls_begin_ != tls_end_) { 325 uptr tls_begin_aligned = RoundDownTo(tls_begin_, SHADOW_GRANULARITY);
|