Searched defs:bit_size_ (Results 1 - 1 of 1) sorted by relevance

/art/compiler/dex/
H A Darena_bit_vector.h39 bit_size_(p_bits_->storage_size_ * sizeof(uint32_t) * 8) {}
44 DCHECK_EQ(bit_size_, p_bits_->GetStorageSize() * sizeof(uint32_t) * 8);
47 if (bit_index_ >= bit_size_) return -1;
57 if ((word_index * 32) >= bit_size_) {
58 bit_index_ = bit_size_;
79 const uint32_t bit_size_; // Size of vector in bits. member in class:art::ArenaBitVector::Iterator

Completed in 60 milliseconds