Home
last modified time | relevance | path

Searched refs:getUsedSize (Results 1 – 3 of 3) sorted by relevance

/oneTBB/src/tbbmalloc/
H A Dlarge_objects.h202 size_t getUsedSize() const { return usedSize.load(std::memory_order_relaxed); } in getUsedSize() function
273 size_t getUsedSize() const;
356 size_t getUsedSize() const;
H A Dlarge_objects.cpp781 size_t LargeObjectCacheImpl<Props>::getUsedSize() const in getUsedSize() function in rml::internal::LargeObjectCacheImpl
785 size += bin[i].getUsedSize(); in getUsedSize()
789 size_t LargeObjectCache::getUsedSize() const in getUsedSize() function in rml::internal::LargeObjectCache
791 return largeCache.getUsedSize() + hugeCache.getUsedSize(); in getUsedSize()
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp521 REQUIRE(loc->getUsedSize()); in TestPools()
525 REQUIRE(loc->getUsedSize() <= maxLocalLOCSize); in TestPools()
528 size_t currUser = loc->getUsedSize(); in TestPools()
531 REQUIRE(loc->getUsedSize() - currUser >= minLargeObjectSize+3*LargeCacheStep); in TestPools()
533 REQUIRE(loc->getUsedSize() <= currUser+maxLocalLOCSize); in TestPools()
535 REQUIRE((!loc->getLOCSize() && !loc->getUsedSize())); in TestPools()
556 REQUIRE(!loc->getUsedSize()); in TestPools()