Searched refs:DTV (Results 1 – 5 of 5) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_tls_get_addr.cc | 46 static inline void DTLS_Deallocate(DTLS::DTV *dtv, uptr size) { in DTLS_Deallocate() 49 UnmapOrDie(dtv, size * sizeof(DTLS::DTV)); in DTLS_Deallocate() 56 new_size = Max(new_size, 4096UL / sizeof(DTLS::DTV)); in DTLS_Resize() 57 DTLS::DTV *new_dtv = in DTLS_Resize() 58 (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize"); in DTLS_Resize() 64 DTLS::DTV *old_dtv = dtls.dtv; in DTLS_Resize() 66 internal_memcpy(new_dtv, dtls.dtv, dtls.dtv_size * sizeof(DTLS::DTV)); in DTLS_Resize() 90 DTLS::DTV *DTLS_on_tls_get_addr(void *arg_void, void *res, in DTLS_on_tls_get_addr() 141 DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res) { return 0; }
|
D | sanitizer_tls_get_addr.h | 39 struct DTV { struct 44 DTV *dtv; // dtv_size elements, allocated by MmapOrDie. 53 DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res, uptr static_tls_begin, argument
|
D | sanitizer_common_interceptors.inc | 4459 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); 4492 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, ptr, tls_begin, tls_end);
|
/external/clang/lib/CodeGen/ |
D | ObjectFilePCHContainerOperations.cpp | 185 DebugTypeVisitor DTV(*Builder->getModuleDebugInfo(), *Ctx); in HandleTopLevelDecl() local 186 DTV.TraverseDecl(I); in HandleTopLevelDecl() 215 DebugTypeVisitor DTV(*Builder->getModuleDebugInfo(), *Ctx); in HandleTagDeclDefinition() local 216 DTV.TraverseDecl(D); in HandleTagDeclDefinition()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interceptors.cc | 2405 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, thr->tls_addr, thr->tls_size); in TSAN_INTERCEPTOR()
|