Lines Matching refs:uintptr_t
81 uintptr_t currTime;
97 uintptr_t lclTime;
103 uintptr_t cleanTime;
107 uintptr_t lastGetOpTime, lastGet;
121 bool getFromPutList(CacheBinOperation* opGet, uintptr_t currTime);
129 uintptr_t getTimeRange() const { return -lclTime; } in getTimeRange()
142 uintptr_t getCurrTime() const { return currTime; } in getCurrTime()
152 uintptr_t currTime;
163 uintptr_t currTime;
250 OperationPreprocessor::getFromPutList(CacheBinOperation *opGet, uintptr_t currTime) in getFromPutList()
253 uintptr_t age = head->age; in getFromPutList()
352 uintptr_t currTime = opCast<OpCleanToThreshold>(*op).currTime; in operator ()()
374 if ( uintptr_t timeRange = prep.getTimeRange() ) { in operator ()()
375 uintptr_t startTime = extMemPool->loc.getCurrTimeRange(timeRange); in operator ()()
377 uintptr_t endTime = startTime + timeRange; in operator ()()
390 uintptr_t getTime = opGetData.currTime + endTime; in operator ()()
397 uintptr_t lastGetOpTime = prep.lastGetOpTime+endTime; in operator ()()
465 OpGet data = {&lmb, size, static_cast<uintptr_t>(0)}; in get()
482 …CacheBin::cleanToThreshold(ExtMemoryPool *extMemPool, BinBitMask *bitMask, uintptr_t currTime, int… in cleanToThreshold()
601 CacheBin::forgetOutdatedState(uintptr_t currTime) in forgetOutdatedState()
609 const uintptr_t sinceLastGet = currTime - lastGet; in forgetOutdatedState()
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()
626 CacheBin::cleanToThreshold(uintptr_t currTime, BinBitMask *bitMask, int idx) in cleanToThreshold()
635 uintptr_t nextAge = 0; in cleanToThreshold()
704 bool LargeObjectCacheImpl<Props>::regularCleanup(ExtMemoryPool *extMemPool, uintptr_t currTime, boo… in regularCleanup()
795 inline bool LargeObjectCache::isCleanupNeededOnRange(uintptr_t range, uintptr_t currTime) in isCleanupNeededOnRange()
803 bool LargeObjectCache::doCleanup(uintptr_t currTime, bool doThreshDecr) in doCleanup()
894 uintptr_t LargeObjectCache::getCurrTimeRange(uintptr_t range) in getCurrTimeRange()