Searched refs:storage_ (Results 1 – 6 of 6) sorted by relevance
/art/runtime/base/ |
D | bit_vector.cc | 31 : storage_(storage), in BitVector() 35 DCHECK(storage_ != nullptr); in BitVector() 37 static_assert(sizeof(*storage_) == kWordBytes, "word bytes"); in BitVector() 38 static_assert(sizeof(*storage_) * 8u == kWordBits, "word bits"); in BitVector() 63 allocator_->Free(storage_); in ~BitVector() 89 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet() 109 uint32_t this_storage = storage_[i]; in IsSubsetOf() 110 uint32_t other_storage = other->storage_[i]; in IsSubsetOf() 126 storage_[idx] &= src->GetRawStorageWord(idx); in Intersect() 134 storage_[idx] = 0; in Intersect() [all …]
|
D | bit_vector.h | 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() [all …]
|
D | bit_vector-inl.h | 69 memset(storage_, 0, storage_size_ * kWordBytes); in ClearAllBits() 75 (memcmp(storage_, src->GetRawStorage(), storage_size_ * sizeof(uint32_t)) == 0); in Equal()
|
/art/runtime/jit/ |
D | offline_profiling_info.h | 128 explicit SafeBuffer(size_t size) : storage_(new uint8_t[size]) { in SafeBuffer() 129 ptr_current_ = storage_.get(); in SafeBuffer() 147 uint8_t* Get() { return storage_.get(); } in Get() 150 std::unique_ptr<uint8_t> storage_;
|
/art/runtime/ |
D | handle_scope-inl.h | 38 CHECK_EQ(&storage_[0], GetReferences()); in StackHandleScope()
|
D | handle_scope.h | 173 StackReference<mirror::Object> storage_[kNumReferences]; variable
|