Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp788 uint32_t byte_idx; in ClearBit() local
790 byte_idx = buffer.bytes.size() - (bit / 8) - 1; in ClearBit()
792 byte_idx = bit / 8; in ClearBit()
795 if (byte_idx < buffer.bytes.size()) { in ClearBit()
796 buffer.bytes[byte_idx] &= ~(1u << byte_bit); in ClearBit()
828 uint32_t byte_idx; in SetBit() local
830 byte_idx = buffer.bytes.size() - (bit / 8) - 1; in SetBit()
832 byte_idx = bit / 8; in SetBit()
835 if (byte_idx < buffer.bytes.size()) { in SetBit()
836 buffer.bytes[byte_idx] |= (1u << byte_bit); in SetBit()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCF.cpp163 for (uint64_t byte_idx = 0; byte_idx < num_bytes - 1; byte_idx++) { in CFBitVectorSummaryProvider() local
164 uint8_t byte = bytes[byte_idx]; in CFBitVectorSummaryProvider()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxVector.cpp185 size_t byte_idx = (idx >> 3); // divide by 8 to get byte index in GetChildAtIndex() local
187 lldb::addr_t byte_location = m_base_data_address + byte_idx; in GetChildAtIndex()
/freebsd/sys/dev/irdma/
H A Dirdma_ctrl.c4795 int ret_code, byte_idx, feat_type, feat_cnt, feat_idx; in irdma_get_rdma_features() local
4840 for (byte_idx = 0, feat_idx = 0; feat_idx < min(feat_cnt, IRDMA_MAX_FEATURES); in irdma_get_rdma_features()
4841 feat_idx++, byte_idx += 8) { in irdma_get_rdma_features()
4842 get_64bit_val(feat_buf.va, byte_idx, &temp); in irdma_get_rdma_features()