Searched refs:bit_offset (Results 1 – 1 of 1) sorted by relevance
61 bool LoadBit(uintptr_t bit_offset) const { in LoadBit() argument63 uint8_t byte = *ComputeBitPointer(bit_offset, &bit_mask); in LoadBit()67 void StoreBit(uintptr_t bit_offset, bool value) const { in StoreBit() argument69 uint8_t* byte = ComputeBitPointer(bit_offset, &bit_mask); in StoreBit()101 byte* ComputeBitPointer(uintptr_t bit_offset, byte* bit_mask) const { in ComputeBitPointer() argument102 uintptr_t bit_remainder = (bit_offset & (kBitsPerByte - 1)); in ComputeBitPointer()104 uintptr_t byte_offset = (bit_offset >> kBitsPerByteLog2); in ComputeBitPointer()