Home
last modified time | relevance | path

Searched refs:GetActuallyAllocatedSize (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_dlsym.h38 internal_allocator()->GetActuallyAllocatedSize(ptr)); in Allocate()
46 internal_allocator()->GetActuallyAllocatedSize(ptr)); in Callocate()
51 uptr size = internal_allocator()->GetActuallyAllocatedSize(ptr); in Free()
64 uptr size = internal_allocator()->GetActuallyAllocatedSize(ptr); in Realloc()
H A Dsanitizer_allocator_combined.h106 uptr old_size = GetActuallyAllocatedSize(p); in Reallocate()
143 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
145 return primary_.GetActuallyAllocatedSize(p); in GetActuallyAllocatedSize()
146 return secondary_.GetActuallyAllocatedSize(p); in GetActuallyAllocatedSize()
H A Dsanitizer_allocator_secondary.h168 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
H A Dsanitizer_allocator_primary32.h217 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
H A Dsanitizer_allocator_primary64.h274 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp157 uptr actually_allocated_size = allocator.GetActuallyAllocatedSize(old_p); in DFsanReallocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp272 uptr actually_allocated_size = allocator.GetActuallyAllocatedSize(old_p); in MsanReallocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp404 uptr allocated_size = allocator.GetActuallyAllocatedSize((void *)chunk); in RePoisonChunk()
617 uptr tail_end = alloc_beg + allocator.GetActuallyAllocatedSize(allocated); in Allocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp72 return allocator.GetActuallyAllocatedSize(reinterpret_cast<void *>(block_)); in ActualSize()