Home
last modified time | relevance | path

Searched refs:byte_bit (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp794 const uint32_t byte_bit = bit % 8; in ClearBit() local
796 buffer.bytes[byte_idx] &= ~(1u << byte_bit); in ClearBit()
834 const uint32_t byte_bit = bit % 8; in SetBit() local
836 buffer.bytes[byte_idx] |= (1u << byte_bit); in SetBit()