Lines Matching refs:pbBitmap
43 bool RedBitGet( const uint8_t * pbBitmap, in RedBitGet() argument
48 if( pbBitmap == NULL ) in RedBitGet()
55 fRet = ( pbBitmap[ ulBit >> 3U ] & ( 0x80U >> ( ulBit & 7U ) ) ) != 0U; in RedBitGet()
70 void RedBitSet( uint8_t * pbBitmap, in RedBitSet() argument
73 REDASSERT( pbBitmap != NULL ); in RedBitSet()
75 if( pbBitmap != NULL ) in RedBitSet()
77 pbBitmap[ ulBit >> 3U ] |= ( 0x80U >> ( ulBit & 7U ) ); in RedBitSet()
90 void RedBitClear( uint8_t * pbBitmap, in RedBitClear() argument
93 REDASSERT( pbBitmap != NULL ); in RedBitClear()
95 if( pbBitmap != NULL ) in RedBitClear()
97 pbBitmap[ ulBit >> 3U ] &= ~( 0x80U >> ( ulBit & 7U ) ); in RedBitClear()