Searched refs:FromMemalign (Results 1 – 5 of 5) sorted by relevance
/external/compiler-rt/lib/scudo/ |
D | scudo_allocator.cpp | 404 if (NewHeader.AllocType != FromMemalign || Type != FromMalloc) { in deallocate() 565 return Instance.allocate(Size, GetPageSizeCached(), FromMemalign); in scudoValloc() 569 return Instance.allocate(Size, Alignment, FromMemalign); in scudoMemalign() 579 return Instance.allocate(Size, PageSize, FromMemalign); in scudoPvalloc() 583 *MemPtr = Instance.allocate(Size, Alignment, FromMemalign); in scudoPosixMemalign()
|
D | scudo_allocator.h | 31 FromMemalign = 3, // Memory block came from memalign, posix_memalign, etc. enumerator
|
/external/llvm-project/compiler-rt/lib/scudo/ |
D | scudo_malloc.cpp | 54 return scudoAllocate(size, alignment, FromMemalign); in memalign()
|
D | scudo_allocator.cpp | 474 if (Header.AllocType != FromMemalign || Type != FromMalloc) in deallocate() 727 Instance.allocate(Size, GetPageSizeCached(), FromMemalign)); in scudoValloc() 740 return SetErrnoOnNull(Instance.allocate(Size, PageSize, FromMemalign)); in scudoPvalloc() 749 void *Ptr = Instance.allocate(Size, Alignment, FromMemalign); in scudoPosixMemalign()
|
D | scudo_allocator.h | 24 FromMemalign = 3, // Memory block came from memalign, posix_memalign, etc. enumerator
|