Home
last modified time | relevance | path

Searched refs:oldSize (Results 1 – 6 of 6) sorted by relevance

/oneTBB/src/tbbmalloc/
H A Dlarge_objects.cpp899 void LargeObjectCache::registerRealloc(size_t oldSize, size_t newSize) in registerRealloc() argument
901 updateCacheState(decrease, oldSize); in registerRealloc()
1054 void *ExtMemoryPool::remap(void *ptr, size_t oldSize, size_t newSize, size_t alignment) in remap() argument
1057 void *o = backend.remap(ptr, oldSize, newSize, alignment); in remap()
H A Dbackend.h361 void *remap(void *ptr, size_t oldSize, size_t newSize, size_t alignment);
H A Dlarge_objects.h369 void registerRealloc(size_t oldSize, size_t newSize);
H A Dfrontend.cpp3035 size_t oldSize = original_ptrs->msize(ptr); in __TBB_malloc_safer_realloc() local
3038 memcpy(tmp, ptr, sz<oldSize? sz : oldSize); in __TBB_malloc_safer_realloc()
3165 size_t oldSize = original_ptrs->aligned_msize(ptr, sizeof(void*), 0); in __TBB_malloc_safer_aligned_realloc() local
3168 memcpy(tmp, ptr, size<oldSize? size : oldSize); in __TBB_malloc_safer_aligned_realloc()
H A Dtbbmalloc_internal.h593 void *remap(void *ptr, size_t oldSize, size_t newSize, size_t alignment);
H A Dbackend.cpp958 void *Backend::remap(void *ptr, size_t oldSize, size_t newSize, size_t alignment) in remap() argument
961 if (inUserPool() || min(oldSize, newSize)<maxBinned_SmallPage in remap()