Home
last modified time | relevance | path

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

/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp951 uintptr_t currTime = cacheCurrTime; in doCleanup()
972 uintptr_t currTime = ++cacheCurrTime; in get()
1005 uintptr_t currTime = cacheCurrTime; in putList()
1006 cacheCurrTime += num; in putList()
1040 static uintptr_t cacheCurrTime; member in CacheBinModel
1044 template<typename Props> uintptr_t CacheBinModel<Props>::cacheCurrTime; member in CacheBinModel<Props>
1057 …rnal::LargeObjectCache::LargeCacheTypeProps>::cacheCurrTime = defaultMemPool->extMemPool.loc.cache… in LOCModelTester()
1628 loc->cacheCurrTime = 0; in TestHugeSizeThreshold()
/oneTBB/src/tbbmalloc/
H A Dlarge_objects.cpp815 return doCleanup(cacheCurrTime.load(std::memory_order_acquire), /*doThreshDecr=*/true); in decreasingCleanup()
820 return doCleanup(cacheCurrTime.load(std::memory_order_acquire), /*doThreshDecr=*/false); in regularCleanup()
872 fprintf(f, "cache time %lu\n", cacheCurrTime.load(std::memory_order_relaxed)); in reportStat()
896 return (cacheCurrTime.fetch_add(range) + 1); in getCurrTimeRange()
H A Dlarge_objects.h322 std::atomic<uintptr_t> cacheCurrTime; variable