Searched refs:iBitStart (Results 1 - 1 of 1) sorted by relevance

/vbox/include/iprt/
H A Dasm.h4309 * @param iBitStart The First bit to clear.
4312 DECLINLINE(void) ASMBitClearRange(volatile void *pvBitmap, int32_t iBitStart, int32_t iBitEnd) argument
4314 if (iBitStart < iBitEnd)
4316 volatile uint32_t *pu32 = (volatile uint32_t *)pvBitmap + (iBitStart >> 5);
4317 int iStart = iBitStart & ~31;
4320 *pu32 &= ((1 << (iBitStart & 31)) - 1) | ~((1 << (iBitEnd & 31)) - 1);
4324 if (iBitStart & 31)
4326 *pu32 &= (1 << (iBitStart & 31)) - 1;
4328 iBitStart = iStart + 32;
4332 if (iBitStart !
4353 ASMBitSetRange(volatile void *pvBitmap, int32_t iBitStart, int32_t iBitEnd) argument
[all...]

Completed in 64 milliseconds