Lines Matching defs:abBitmap
55 uint8_t abBitmap[1];
75 PTRACKER pTracker = (PTRACKER)RTMemAllocZ(RT_OFFSETOF(TRACKER, abBitmap[cbBitmap]));
108 bool fRc = !ASMBitTestAndSet(pTracker->abBitmap, Key);
113 if (!ASMBitTestAndSet(pTracker->abBitmap, KeyLast))
133 bool fRc = ASMBitTestAndClear(pTracker->abBitmap, Key);
138 if (ASMBitTestAndClear(pTracker->abBitmap, KeyLast))
164 if (ASMBitTest(pTracker->abBitmap, Key))
169 int Key2 = ASMBitNextClear(pTracker->abBitmap, pTracker->MaxKey, Key);
179 if (!ASMBitTest(pTracker->abBitmap, Key))
181 Key2 = ASMBitNextClear(pTracker->abBitmap, RT_ALIGN_32(KeyPrev, 32), Key);
201 int Key2 = ASMBitNextSet(pTracker->abBitmap, RT_ALIGN_32(KeyLast, 32), Key);
242 if (!ASMBitTest(pTracker->abBitmap, Key))
247 int Key2 = ASMBitNextSet(pTracker->abBitmap, pTracker->MaxKey, Key);
253 uint32_t *pu32Start = (uint32_t *)&pTracker->abBitmap[0];
254 uint32_t *pu32Cur = (uint32_t *)&pTracker->abBitmap[Key >> 8];
264 Key2 = ASMBitFirstSet(pTracker->abBitmap, pTracker->MaxKey);