Home
last modified time | relevance | path

Searched refs:InternalAlloc (Results 1 – 17 of 17) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator_internal.h48 void *InternalAlloc(uptr size, InternalAllocatorCache *cache = 0);
60 return InternalAlloc(size); in new()
Dsanitizer_symbolizer_libcdep.cc22 *result = (char*)InternalAlloc(prefix_len + 1); in ExtractToken()
55 *result = (char *)InternalAlloc(prefix_len + 1); in ExtractTokenUpToDelimiter()
Dsanitizer_libc.cc107 char *s2 = (char*)InternalAlloc(len + 1); in internal_strdup()
115 char *s2 = (char*)InternalAlloc(len + 1); in internal_strndup()
Dsanitizer_symbolizer.cc44 void *mem = InternalAlloc(sizeof(SymbolizedStack)); in New()
Dsanitizer_allocator.cc91 void *InternalAlloc(uptr size, InternalAllocatorCache *cache) { in InternalAlloc() function
Dsanitizer_addrhashmap.h256 add = (AddBucket*)InternalAlloc(kInitSize); in acquire()
266 AddBucket *add1 = (AddBucket*)InternalAlloc(newsize); in acquire()
Dsanitizer_suppressions.cc133 s.templ = (char*)InternalAlloc(end2 - line + 1); in Parse()
Dsanitizer_symbolizer_libbacktrace.cc56 char *buf = (char *)InternalAlloc(data->allocated); in CplusV3DemangleCallback()
Dsanitizer_deadlock_detector1.cc81 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt)); in CreateLogicalThread()
Dsanitizer_common.cc268 void *mem = InternalAlloc(sizeof(AddressRange)); in addAddressRange()
Dsanitizer_symbolizer_posix_libcdep.cc322 char *res_buff = static_cast<char*>(InternalAlloc(res_length)); in Demangle()
Dsanitizer_deadlock_detector2.cc141 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc( in CreateLogicalThread()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_allocator_test.cc606 char *p = (char*)InternalAlloc(10); in TEST()
608 char *p2 = (char*)InternalAlloc(20); in TEST()
621 char *p = (char*)InternalAlloc(sz); in TEST()
631 void *p = InternalAlloc(10 << 20); in TEST()
/external/compiler-rt/lib/tsan/go/
Dtsan_go.cc36 return InternalAlloc(sz); in internal_alloc()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_mman.cc171 return InternalAlloc(sz, &thr->internal_alloc_cache); in internal_alloc()
/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc39 thr = (Thread*)InternalAlloc(sizeof(*thr)); in InitThread()
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc1291 (MSanAtExitRecord *)InternalAlloc(sizeof(MSanAtExitRecord)); in INTERCEPTOR()