Searched refs:byte_idx (Results 1 – 4 of 4) sorted by relevance
788 uint32_t byte_idx; in ClearBit() local790 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() local830 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()
163 for (uint64_t byte_idx = 0; byte_idx < num_bytes - 1; byte_idx++) { in CFBitVectorSummaryProvider() local164 uint8_t byte = bytes[byte_idx]; in CFBitVectorSummaryProvider()
185 size_t byte_idx = (idx >> 3); // divide by 8 to get byte index in GetChildAtIndex() local187 lldb::addr_t byte_location = m_base_data_address + byte_idx; in GetChildAtIndex()
4795 int ret_code, byte_idx, feat_type, feat_cnt, feat_idx; in irdma_get_rdma_features() local4840 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()