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

/vbox/include/iprt/
H A Dasm.h4310 * @param iBitEnd The first bit not to clear.
4312 DECLINLINE(void) ASMBitClearRange(volatile void *pvBitmap, int32_t iBitStart, int32_t iBitEnd) argument
4314 if (iBitStart < iBitEnd)
4318 int iEnd = iBitEnd & ~31;
4320 *pu32 &= ((1 << (iBitStart & 31)) - 1) | ~((1 << (iBitEnd & 31)) - 1);
4336 if (iBitEnd & 31)
4338 pu32 = (volatile uint32_t *)pvBitmap + (iBitEnd >> 5);
4339 *pu32 &= ~((1 << (iBitEnd & 31)) - 1);
4351 * @param iBitEnd The first bit not to set.
4353 DECLINLINE(void) ASMBitSetRange(volatile void *pvBitmap, int32_t iBitStart, int32_t iBitEnd) argument
[all...]

Completed in 52 milliseconds