HomeSort by relevance Sort by last modified time
    Searched refs:InternalAlloc (Results 1 - 21 of 21) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator_internal.h 48 void *InternalAlloc(uptr size, InternalAllocatorCache *cache = nullptr,
65 return InternalAlloc(size);
sanitizer_symbolizer.cc 44 void *mem = InternalAlloc(sizeof(SymbolizedStack));
sanitizer_allocator.cc 122 void *InternalAlloc(uptr size, InternalAllocatorCache *cache, uptr alignment) {
134 return InternalAlloc(size, cache);
149 void *p = InternalAlloc(count * size, cache);
sanitizer_suppressions.cc 132 s.templ = (char*)InternalAlloc(end2 - line + 1);
sanitizer_addrhashmap.h 256 add = (AddBucket*)InternalAlloc(kInitSize);
266 AddBucket *add1 = (AddBucket*)InternalAlloc(newsize);
sanitizer_libc.cc 109 char *s2 = (char*)InternalAlloc(len + 1);
117 char *s2 = (char*)InternalAlloc(len + 1);
sanitizer_symbolizer_libcdep.cc 22 *result = (char*)InternalAlloc(prefix_len + 1);
55 *result = (char *)InternalAlloc(prefix_len + 1);
sanitizer_deadlock_detector1.cc 81 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt));
sanitizer_symbolizer_libbacktrace.cc 56 char *buf = (char *)InternalAlloc(data->allocated);
sanitizer_symbolizer_posix_libcdep.cc 376 char *res_buff = static_cast<char*>(InternalAlloc(res_length));
sanitizer_common.cc 268 void *mem = InternalAlloc(sizeof(AddressRange));
sanitizer_deadlock_detector2.cc 141 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(
  /external/compiler-rt/lib/tsan/rtl/
tsan_malloc_mac.cc 31 if (cur_thread()->in_symbolizer) return InternalAlloc(size); \
44 return InternalAlloc(size, nullptr, GetPageSizeCached()); \
tsan_new_delete.cc 29 return InternalAlloc(size); \
tsan_rtl_proc.cc 22 void *mem = InternalAlloc(sizeof(Processor));
tsan_mman.cc 248 return InternalAlloc(sz, &thr->proc()->internal_alloc_cache);
tsan_interceptors.cc 409 AtExitCtx *ctx = (AtExitCtx*)InternalAlloc(sizeof(AtExitCtx));
435 AtExitCtx *ctx = (AtExitCtx*)InternalAlloc(sizeof(AtExitCtx));
588 return InternalAlloc(size);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 616 char *p = (char*)InternalAlloc(10);
618 char *p2 = (char*)InternalAlloc(20);
631 char *p = (char*)InternalAlloc(sz);
641 void *p = InternalAlloc(10 << 20);
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 36 thr = (Thread*)InternalAlloc(sizeof(*thr));
  /external/compiler-rt/lib/tsan/go/
tsan_go.cc 32 return InternalAlloc(sz);
  /external/compiler-rt/lib/msan/
msan_interceptors.cc     [all...]

Completed in 264 milliseconds