Searched refs:InternalAlloc (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_malloc_mac.cpp31 if (in_symbolizer()) return InternalAlloc(size); \
44 void *p = InternalAlloc(size, nullptr, alignment); \
53 return InternalAlloc(size, nullptr, GetPageSizeCached()); \
H A Dtsan_rtl_proc.cpp21 void *mem = InternalAlloc(sizeof(Processor));
H A Dtsan_new_delete.cpp33 return InternalAlloc(size); \
48 return InternalAlloc(size, nullptr, (uptr)align); \
H A Dtsan_mman.cpp348 return InternalAlloc(sz, &thr->proc()->internal_alloc_cache);
H A Dtsan_interceptors_posix.cpp421 AtExitCtx *ctx = (AtExitCtx*)InternalAlloc(sizeof(AtExitCtx));
462 AtExitCtx *ctx = (AtExitCtx*)InternalAlloc(sizeof(AtExitCtx));
649 return InternalAlloc(size);
799 return InternalAlloc(sz, nullptr, align);
806 return InternalAlloc(sz, nullptr, GetPageSizeCached());
817 return InternalAlloc(sz, nullptr, PageSize);
830 void *p = InternalAlloc(sz, nullptr, align);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_internal.h42 void *InternalAlloc(uptr size, InternalAllocatorCache *cache = nullptr,
H A Dsanitizer_vector.h109 T *p = (T*)InternalAlloc(cap * sizeof(T));
H A Dsanitizer_allocator.cpp62 // they need to be passed to __aligned_free. InternalAlloc interface does
149 void *InternalAlloc(uptr size, InternalAllocatorCache *cache, uptr alignment) { function in namespace:__sanitizer
161 return InternalAlloc(size, cache);
192 void *p = InternalAlloc(count * size, cache);
H A Dsanitizer_coverage_libcdep_new.cpp60 char* file_path = static_cast<char*>(InternalAlloc(kMaxPathLength));
61 char* module_name = static_cast<char*>(InternalAlloc(kMaxPathLength));
62 uptr* pcs = static_cast<uptr*>(InternalAlloc(len * sizeof(uptr)));
H A Dsanitizer_symbolizer.cpp45 void *mem = InternalAlloc(sizeof(SymbolizedStack));
H A Dsanitizer_suppressions.cpp145 s.templ = (char*)InternalAlloc(end2 - line + 1);
H A Dsanitizer_addrhashmap.h267 add = (AddBucket*)InternalAlloc(kInitSize);
277 AddBucket *add1 = (AddBucket*)InternalAlloc(newsize);
H A Dsanitizer_symbolizer_libcdep.cpp33 *result = (char*)InternalAlloc(prefix_len + 1);
76 *result = (char *)InternalAlloc(prefix_len + 1);
H A Dsanitizer_common.cpp162 void *mem = InternalAlloc(sizeof(AddressRange));
H A Dsanitizer_deadlock_detector1.cpp80 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt));
H A Dsanitizer_symbolizer_libbacktrace.cpp55 char *buf = (char *)InternalAlloc(data->allocated);
H A Dsanitizer_libc.cpp110 char *s2 = (char*)InternalAlloc(len + 1);
H A Dsanitizer_symbolizer_posix_libcdep.cpp368 char *res_buff = static_cast<char*>(InternalAlloc(res_length));
H A Dsanitizer_deadlock_detector2.cpp136 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_mac.cpp62 ptr = (thread_local_data_t *)InternalAlloc(sizeof(*ptr));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_utils.cpp125 LogWriter *LW = reinterpret_cast<LogWriter *>(InternalAlloc(sizeof(LogWriter)));
H A Dxray_basic_logging.cpp135 InternalAlloc(sizeof(XRayRecord) * GlobalOptions.ThreadBufferSize,
148 InternalAlloc(sizeof(StackEntry) * GlobalOptions.MaxStackDepth, nullptr,
H A Dxray_log_interface.cpp76 auto *NewModeImpl = static_cast<ModeImpl *>(InternalAlloc(sizeof(ModeImpl)));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp35 thr = (Thread*)InternalAlloc(sizeof(*thr));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/go/
H A Dtsan_go.cpp31 return InternalAlloc(sz);

Completed in 197 milliseconds

12