OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DTV
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_tls_get_addr.h
39
struct
DTV
{
44
DTV
*
dtv
; // dtv_size elements, allocated by MmapOrDie.
member in struct:__sanitizer::DTLS
53
DTLS::
DTV
*DTLS_on_tls_get_addr(void *arg, void *res, uptr static_tls_begin,
sanitizer_tls_get_addr.cc
46
static inline void DTLS_Deallocate(DTLS::
DTV
*
dtv
, uptr size) {
48
VPrintf(2, "__tls_get_addr: DTLS_Deallocate %p %zd\n",
dtv
, size);
49
UnmapOrDie(
dtv
, size * sizeof(DTLS::
DTV
));
56
new_size = Max(new_size, 4096UL / sizeof(DTLS::
DTV
));
57
DTLS::
DTV
*new_dtv =
58
(DTLS::
DTV
*)MmapOrDie(new_size * sizeof(DTLS::
DTV
), "DTLS_Resize");
64
DTLS::
DTV
*old_dtv = dtls.dtv
[
all
...]
/external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp
168
DebugTypeVisitor
DTV
(*Builder->getModuleDebugInfo(), *Ctx);
169
DTV
.TraverseDecl(I);
Completed in 80 milliseconds