Home
last modified time | relevance | path

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

/art/libartbase/base/
Dbit_vector.cc144 int highest_bit = src->GetHighestBitSet(); in Union() local
148 if (highest_bit == -1) { in Union()
153 uint32_t src_size = BitsToWords(highest_bit + 1); in Union()
159 EnsureSize(highest_bit); in Union()
162 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits); in Union()
178 int highest_bit = union_with->GetHighestBitSet(); in UnionIfNotIn() local
182 if (highest_bit == -1) { in UnionIfNotIn()
187 uint32_t union_with_size = BitsToWords(highest_bit + 1); in UnionIfNotIn()
191 EnsureSize(highest_bit); in UnionIfNotIn()
194 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits); in UnionIfNotIn()
[all …]