Lines Matching refs:bArray
15693 …fined, the functions will assert if the indicated bit number is outside of the range of bArray. How
15715 4 unsigned int bitNum, // IN: number of the bit in 'bArray'
15716 5 BYTE *bArray, // IN: array containing the bit
15717 6 unsigned int arraySize // IN: size in bytes of 'bArray'
15721 10 return((bArray[bitNum >> 3] & (1 << (bitNum & 7))) != 0);
15727 This function will set the indicated bit in bArray.
15731 14 unsigned int bitNum, // IN: number of the bit in 'bArray'
15732 15 BYTE *bArray, // IN: array containing the bit
15733 16 unsigned int arraySize // IN: size in bytes of 'bArray'
15737 20 bArray[bitNum >> 3] |= (1 << (bitNum & 7));
15748 This function will clear the indicated bit in bArray.
15752 24 unsigned int bitNum, // IN: number of the bit in 'bArray'.
15753 25 BYTE *bArray, // IN: array containing the bit
15754 26 unsigned int arraySize // IN: size in bytes of 'bArray'
15758 30 bArray[bitNum >> 3] &= ~(1 << (bitNum & 7));