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

/vbox/src/VBox/Runtime/common/alloc/
H A Dmemcache.cpp86 void volatile *pbmAlloc; member in struct:RTMEMCACHEPAGE
319 pPage->pbmAlloc = pb;
320 Assert((uintptr_t)pPage->pbmCtor + pThis->cBits / 8 <= (uintptr_t)pPage->pbmAlloc);
324 ASMBitSet(pPage->pbmAlloc, iBit);
446 if (ASMAtomicBitTestAndSet(pPage->pbmAlloc, iObj))
450 iObj = ASMBitFirstClear(pPage->pbmAlloc, pThis->cBits);
453 if (!ASMAtomicBitTestAndSet(pPage->pbmAlloc, iObj))
520 AssertReturnVoid(ASMAtomicBitTestAndClear(pPage->pbmAlloc, iObj));
572 AssertReturnVoid(ASMBitTest(pPage->pbmAlloc, (int32_t)iObj));

Completed in 33 milliseconds