Lines Matching defs:PTRACKER
56 } TRACKER, *PTRACKER;
72 static PTRACKER TrackerCreate(uint32_t MaxKey)
75 PTRACKER pTracker = (PTRACKER)RTMemAllocZ(RT_OFFSETOF(TRACKER, abBitmap[cbBitmap]));
92 static void TrackerDestroy(PTRACKER pTracker)
106 static bool TrackerInsert(PTRACKER pTracker, uint32_t Key, uint32_t KeyLast)
131 static bool TrackerRemove(PTRACKER pTracker, uint32_t Key, uint32_t KeyLast)
158 static bool TrackerNewRandomEx(PTRACKER pTracker, uint32_t *pKey, uint32_t *pKeyLast, uint32_t cMaxKeys)
225 static bool TrackerNewRandom(PTRACKER pTracker, uint32_t *pKey)
239 static bool TrackerFindRandom(PTRACKER pTracker, uint32_t *pKey)
280 bool TrackerAllocSeq(PTRACKER pTracker, uint32_t *pKey, uint32_t *pKeyLast, uint32_t cMaxKeys)
547 PTRACKER pTracker = TrackerCreate(cMax2);