Home
last modified time | relevance | path

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

/oneTBB/src/tbbmalloc/
H A Dlarge_objects.cpp609 const uintptr_t sinceLastGet = currTime - lastGet; in forgetOutdatedState() local
614 doCleanup = sinceLastGet > static_cast<uintptr_t>(Props::LongWaitFactor * threshold); in forgetOutdatedState()
616 …doCleanup = sinceLastGet > static_cast<uintptr_t>(Props::LongWaitFactor * (lastCleanedAge - lastGe… in forgetOutdatedState()
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp975 const uintptr_t sinceLastGet = currTime - cacheBinModel.lastGet; in get() local
977 if ((threshold && sinceLastGet > Props::LongWaitFactor * threshold) || in get()
978 …(cacheBinModel.lastCleanedAge && sinceLastGet > Props::LongWaitFactor * (cacheBinModel.lastCleaned… in get()