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()
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 …]
Dbit_vector.h108 : storage_(other.storage_), in BitVector()
112 other.storage_ = nullptr; in BitVector()
145 storage_[WordIndex(idx)] |= BitMask(idx); in SetBit()
153 storage_[WordIndex(idx)] &= ~BitMask(idx); in ClearBit()
161 return (idx < (storage_size_ * kWordBits)) && IsBitSet(storage_, idx); in IsBitSet()
214 return storage_[idx]; in GetRawStorageWord()
218 return storage_; in GetRawStorage()
222 return storage_; in GetRawStorage()
253 memcpy(dst, storage_, vec_len); in CopyTo()
256 memcpy(dst, storage_, len); in CopyTo()
[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_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.h804 explicit SafeBuffer(size_t size) : storage_(new uint8_t[size]) { in SafeBuffer()
805 ptr_current_ = storage_.get(); in SafeBuffer()
832 uint8_t* Get() { return storage_.get(); } in Get()
835 std::unique_ptr<uint8_t[]> storage_;
/art/runtime/
Dhandle_scope.h209 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()