Home | History | Annotate | Download | only in runtime

Lines Matching defs:bit_mask

62     uint8_t bit_mask;
63 uint8_t byte = *ComputeBitPointer(bit_offset, &bit_mask);
64 return byte & bit_mask;
68 uint8_t bit_mask;
69 uint8_t* byte = ComputeBitPointer(bit_offset, &bit_mask);
71 *byte |= bit_mask;
73 *byte &= ~bit_mask;
100 // containing the bit, and sets bit_mask to the bit within that byte.
101 byte* ComputeBitPointer(uintptr_t bit_offset, byte* bit_mask) const {
103 *bit_mask = (1U << bit_remainder);