Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h400 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
794 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
1136 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
1375 uptr old_size = GetActuallyAllocatedSize(p); in Reallocate()
1414 uptr GetActuallyAllocatedSize(void *p) { in GetActuallyAllocatedSize() function
1416 return primary_.GetActuallyAllocatedSize(p); in GetActuallyAllocatedSize()
1417 return secondary_.GetActuallyAllocatedSize(p); in GetActuallyAllocatedSize()
/external/compiler-rt/lib/scudo/
Dscudo_allocator.cpp352 memset(Ptr, 0, BackendAllocator.GetActuallyAllocatedSize(Ptr)); in allocate()
446 BackendAllocator.GetActuallyAllocatedSize(Chunk->AllocBeg(Header)); in getUsableSize()
/external/compiler-rt/lib/msan/
Dmsan_allocator.cc187 uptr actually_allocated_size = allocator.GetActuallyAllocatedSize(old_p); in MsanReallocate()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_allocator_test.cc123 CHECK_GE(a->GetActuallyAllocatedSize(x), size); in TestSizeClassAllocator()
371 CHECK_GE(a.GetActuallyAllocatedSize(x), size); in TEST()
/external/compiler-rt/lib/asan/
Dasan_allocator.cc384 uptr allocated_size = allocator.GetActuallyAllocatedSize(allocated); in Allocate()