Searched defs:cPerPage (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/alloc/
H A Dmemcache.cpp114 uint32_t cPerPage; member in struct:RTMEMCACHEINT
116 * @remarks This is higher or equal to cPerPage and it is aligned such that
207 pThis->cPerPage = (uint32_t)((PAGE_SIZE - RT_ALIGN_Z(sizeof(RTMEMCACHEPAGE), cbAlignment)) / pThis->cbObject);
209 + pThis->cPerPage * pThis->cbObject
210 + RT_ALIGN(pThis->cPerPage, 64) / 8 * 2
212 pThis->cPerPage--;
213 pThis->cBits = RT_ALIGN(pThis->cPerPage, 64);
305 uint32_t const cObjects = RT_MIN(pThis->cPerPage, pThis->cMax - pThis->cTotal);
511 Assert(ASMAtomicUoReadS32(&pPage->cFree) < (int32_t)pThis->cPerPage);
519 Assert(iObj < pThis->cPerPage);
[all...]

Completed in 42 milliseconds