Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector.cc163 int highest_bit = src->GetHighestBitSet(); in Union() local
167 if (highest_bit == -1) { in Union()
172 uint32_t src_size = BitsToWords(highest_bit + 1); in Union()
179 SetBit(highest_bit); in Union()
182 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits); in Union()
198 int highest_bit = union_with->GetHighestBitSet(); in UnionIfNotIn() local
202 if (highest_bit == -1) { in UnionIfNotIn()
207 uint32_t union_with_size = BitsToWords(highest_bit + 1); in UnionIfNotIn()
214 SetBit(highest_bit); in UnionIfNotIn()
217 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits); in UnionIfNotIn()
[all …]