Home
last modified time | relevance | path

Searched refs:reallocAligned (Results 1 – 2 of 2) sorted by relevance

/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp2400 static void *reallocAligned(MemoryPool *memPool, void *ptr, in reallocAligned() function
2766 return reallocAligned((rml::internal::MemoryPool*)mPool, object, size, 0); in pool_realloc()
2790 tmp = reallocAligned(mPool, ptr, size, alignment); in pool_aligned_realloc()
3007 tmp = reallocAligned(defaultMemPool, ptr, size, 0); in scalable_realloc()
3028 tmp = reallocAligned(defaultMemPool, ptr, sz, 0); in __TBB_malloc_safer_realloc()
3132 tmp = reallocAligned(defaultMemPool, ptr, size, alignment); in scalable_aligned_realloc()
3154 tmp = reallocAligned(defaultMemPool, ptr, size, alignment); in __TBB_malloc_safer_aligned_realloc()
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp1324 void* reallocPtr = rml::internal::reallocAligned(defaultMemPool, origPtr, reallocSize, 0); in reallocAndRetrieve()