Lines Matching refs:storage_
120 : storage_(other.storage_), in BitVector()
124 other.storage_ = nullptr; in BitVector()
157 storage_[WordIndex(idx)] |= BitMask(idx); in SetBit()
165 storage_[WordIndex(idx)] &= ~BitMask(idx); in ClearBit()
173 return (idx < (storage_size_ * kWordBits)) && IsBitSet(storage_, idx); in IsBitSet()
226 return storage_[idx]; in GetRawStorageWord()
230 return storage_; in GetRawStorage()
234 return storage_; in GetRawStorage()
265 memcpy(dst, storage_, vec_len); in CopyTo()
268 memcpy(dst, storage_, len); in CopyTo()
299 uint32_t* storage_; // The storage for the bit vector. variable