Home
last modified time | relevance | path

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

/art/libartbase/base/
Dbit_vector.cc31 : 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()
64 if (storage_ != nullptr) { in ~BitVector()
66 allocator_->Free(storage_); in ~BitVector()
93 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet()
113 uint32_t this_storage = storage_[i]; in IsSubsetOf()
114 uint32_t other_storage = other->storage_[i]; in IsSubsetOf()
130 storage_[idx] &= src->GetRawStorageWord(idx); in Intersect()
[all …]
Dbit_string.h185 StorageType data = BitFieldExtract(storage_, GetLsbForPosition(idx), kBitSizeAtPosition[idx]);
198 storage_ = BitFieldInsert(storage_, in SetAt()
227 return storage_; in StorageType()
239 return storage_ == other.storage_;
262 StorageType data = BitFieldClear(copy.storage_, lsb, bit_size); in Truncate()
263 copy.storage_ = data; in Truncate()
274 StorageType storage_; member
Dbit_vector.h113 : storage_(other.storage_), in BitVector()
117 other.storage_ = nullptr; in BitVector()
150 storage_[WordIndex(idx)] |= BitMask(idx); in SetBit()
158 storage_[WordIndex(idx)] &= ~BitMask(idx); in ClearBit()
166 return (idx < (storage_size_ * kWordBits)) && IsBitSet(storage_, idx); in IsBitSet()
219 return storage_[idx]; in GetRawStorageWord()
223 return storage_; in GetRawStorage()
227 return storage_; in GetRawStorage()
269 memcpy(dst, storage_, vec_len); in CopyTo()
272 memcpy(dst, storage_, len); in CopyTo()
[all …]
Dbit_struct.h125 return BitFieldExtract(storage_, kBitOffset, kBitWidth); in StorageType()
160 ExtractionType storage = static_cast<ExtractionType>(storage_); in Get()
169 storage_ = BitFieldInsert(storage_, extracted, kBitOffset, kBitWidth); in Set()
180 StorageType storage_; member
Dbit_struct_detail.h67 return converter.storage_.val_; in ToUnderlyingStorage()
72 converter.storage_.val_ = storage; in FromUnderlyingStorage()
91 StorageWrapper storage_; member
Dbit_vector-inl.h89 memset(storage_, 0, storage_size_ * kWordBytes); in ClearAllBits()
95 (memcmp(storage_, src->GetRawStorage(), storage_size_ * sizeof(uint32_t)) == 0); in Equal()
/art/compiler/
Dcompiler.h105 storage_(storage), in Compiler()
114 return storage_; in GetCompiledMethodStorage()
119 CompiledMethodStorage* const storage_; variable
Dcompiled_method.h81 return storage_; in GetStorage()
98 CompiledMethodStorage* const storage_; variable
Dcompiled_method.cc27 : storage_(storage), in CompiledCode()
/art/dex2oat/linker/
Dmulti_oat_relative_patcher.h145 : storage_(storage) {} in ThunkProvider()
152 CompiledMethodStorage* storage_;
Dmulti_oat_relative_patcher.cc31 *code = storage_->GetThunkCode(patch, debug_name); in GetThunkCode()
Drelative_patcher_test.h42 : storage_(/*swap_fd=*/ -1), in RelativePatcherTest()
107 &storage_,
384 CompiledMethodStorage storage_; variable
/art/libprofile/profile/
Dprofile_compilation_info.cc408 : storage_(nullptr), in SafeBuffer()
413 : storage_(new uint8_t[size]), in SafeBuffer()
414 ptr_current_(storage_.get()), in SafeBuffer()
487 storage_ = std::move(compressed_buffer); in Deflate()
488 ptr_current_ = storage_.get() + output_size; in Deflate()
495 DCHECK(ptr_current_ == storage_.get()); in Inflate()
505 DCHECK(ptr_current_ == storage_.get()); in Inflate()
528 return storage_.get(); in Get()
533 return ptr_end_ - storage_.get(); in Size()
537 std::swap(storage_, other.storage_); in Swap()
[all …]
/art/runtime/
Dhandle_scope.h210 StackReference<mirror::Object> storage_[kNumReferences]; variable
Dhandle_scope-inl.h40 DCHECK_EQ(&storage_[0], GetReferences()); // TODO: Figure out how to use a compile assert. in FixedSizeHandleScope()