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

/art/runtime/base/
H A Dbit_vector.cc27 BitVector::BitVector(bool expandable, function in class:art::BitVector
41 BitVector::BitVector(uint32_t start_bits, function in class:art::BitVector
44 : BitVector(expandable,
51 BitVector::BitVector(const BitVector& src, function in class:art::BitVector
54 : BitVector(expandable,
62 BitVector
[all...]
H A Dbit_vector.h31 * from zero. All operations on a BitVector are unsynchronized.
33 class BitVector { class in namespace:art
38 * @brief Convenient iterator across the indexes of the BitVector's set bits.
41 * to the highest index of the BitVector's set bits. Instances can be retrieved
42 * only through BitVector::Indexes() which returns an IndexContainer wrapper
72 IndexIterator(const BitVector* bit_vector, begin_tag)
77 IndexIterator(const BitVector* bit_vector, end_tag)
91 friend class BitVector::IndexContainer;
95 * @brief BitVector wrapper class for iteration across indexes of set bits.
99 explicit IndexContainer(const BitVector* bit_vecto
[all...]

Completed in 73 milliseconds