Lines Matching defs:cTotal
137 uint32_t volatile cTotal;
223 pThis->cTotal = 0;
243 for (PRTMEMCACHEFREEOBJ pFree = pThis->pFreeTop; pFree && cFree < pThis->cTotal + 5; pFree = pFree->pNext)
245 AssertMsg(cFree == pThis->cTotal, ("cFree=%u cTotal=%u\n", cFree, pThis->cTotal));
305 uint32_t const cObjects = RT_MIN(pThis->cPerPage, pThis->cMax - pThis->cTotal);
335 ASMAtomicAddU32(&pThis->cTotal, cObjects);
398 uint32_t cTotal = ASMAtomicUoReadU32(&pThis->cTotal);
399 if ( (uint32_t)(cTotal + -cNewFree) > pThis->cMax
400 || (uint32_t)(cTotal + -cNewFree) <= cTotal)