reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
160 NOINLINE void *allocate(uptr Size, Chunk::Origin Origin, 247 NOINLINE void deallocate(void *Ptr, Chunk::Origin Origin, uptr DeleteSize = 0, 311 OldHeader.Origin, Chunk::Origin::Malloc); 348 void *NewPtr = allocate(NewSize, Chunk::Origin::Malloc, Alignment);projects/compiler-rt/lib/scudo/standalone/wrappers_c.inc
30 Product, scudo::Chunk::Origin::Malloc, SCUDO_MALLOC_ALIGNMENT, true)); 34 SCUDO_ALLOCATOR.deallocate(ptr, scudo::Chunk::Origin::Malloc); 57 size, scudo::Chunk::Origin::Malloc, SCUDO_MALLOC_ALIGNMENT)); 86 return SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Memalign, 98 SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Memalign, alignment); 117 scudo::Chunk::Origin::Memalign, PageSize)); 123 size, scudo::Chunk::Origin::Malloc, SCUDO_MALLOC_ALIGNMENT)); 125 SCUDO_ALLOCATOR.deallocate(ptr, scudo::Chunk::Origin::Malloc); 134 size, scudo::Chunk::Origin::Memalign, scudo::getPageSizeCached())); 179 SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Malloc, alignment));projects/compiler-rt/lib/scudo/standalone/wrappers_cpp.cpp
26 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::New); 29 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray); 33 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::New); 37 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray); 40 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::New, 44 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray, 49 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::New, 54 return AllocatorPtr->allocate(size, scudo::Chunk::Origin::NewArray, 59 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::New); 62 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray); 65 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::New); 69 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray); 72 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::New, size); 75 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, size); 78 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::New, 0, 83 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, 0, 88 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::New, 0, 93 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, 0, 98 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::New, size, 103 AllocatorPtr->deallocate(ptr, scudo::Chunk::Origin::NewArray, size,