Home
last modified time | relevance | path

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

/oneTBB/src/tbbmalloc/
H A Dbackend.cpp638 int *lockedBinsThreshold, int numOfLockedBins) in releaseMemInCaches() argument
648 if (*lockedBinsThreshold && numOfLockedBins) { in releaseMemInCaches()
649 *lockedBinsThreshold = 0; in releaseMemInCaches()
656 int *lockedBinsThreshold, int numOfLockedBins, in askMemFromOS() argument
682 return releaseMemInCaches(startModifiedCnt, lockedBinsThreshold, numOfLockedBins); in askMemFromOS()
719 return releaseMemInCaches(startModifiedCnt, lockedBinsThreshold, numOfLockedBins); in askMemFromOS()
800 int lockedBinsThreshold = extMemPool->fixedPool || size>=maxBinned_SmallPage? 0 : 2; in genericGetBlock() local
827 } while (!block && (numOfLockedBins>lockedBinsThreshold || cleanCnt % 2 == 1 || in genericGetBlock()
838 block = askMemFromOS(totalReqSize, startModifiedCnt, &lockedBinsThreshold, in genericGetBlock()
H A Dbackend.h300 int *lockedBinsThreshold, int numOfLockedBins,
317 …FreeBlock *releaseMemInCaches(intptr_t startModifiedCnt, int *lockedBinsThreshold, int numOfLocked…