Searched refs:storage_ (Results 1 – 14 of 14) sorted by relevance
/art/libartbase/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 | 108 : 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 …]
|
D | bit_string.h | 185 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
|
D | bit_struct.h | 166 storage_.pod_.val_ = BitFieldInsert(storage_.pod_.val_, in Set() 174 return BitFieldExtract(storage_.pod_.val_, kBitOffset, kBitWidth); in GetStorage() 192 } storage_; member
|
D | bit_vector-inl.h | 89 memset(storage_, 0, storage_size_ * kWordBytes); in ClearAllBits() 95 (memcmp(storage_, src->GetRawStorage(), storage_size_ * sizeof(uint32_t)) == 0); in Equal()
|
/art/compiler/ |
D | compiler.h | 104 storage_(storage), in Compiler() 113 return storage_; in GetCompiledMethodStorage() 118 CompiledMethodStorage* const storage_; variable
|
D | compiled_method.h | 81 return storage_; in GetStorage() 98 CompiledMethodStorage* const storage_; variable
|
D | compiled_method.cc | 27 : storage_(storage), in CompiledCode()
|
/art/dex2oat/linker/ |
D | multi_oat_relative_patcher.h | 138 : storage_(storage) {} in ThunkProvider() 145 CompiledMethodStorage* storage_;
|
D | multi_oat_relative_patcher.cc | 31 *code = storage_->GetThunkCode(patch, debug_name); in GetThunkCode()
|
D | relative_patcher_test.h | 43 : storage_(/*swap_fd=*/ -1), in RelativePatcherTest() 108 &storage_, 360 CompiledMethodStorage storage_; variable
|
/art/libprofile/profile/ |
D | profile_compilation_info.h | 725 explicit SafeBuffer(size_t size) : storage_(new uint8_t[size]) { in SafeBuffer() 726 ptr_current_ = storage_.get(); in SafeBuffer() 753 uint8_t* Get() { return storage_.get(); } in Get() 756 std::unique_ptr<uint8_t[]> storage_;
|
/art/runtime/ |
D | handle_scope.h | 209 StackReference<mirror::Object> storage_[kNumReferences]; variable
|
D | handle_scope-inl.h | 39 DCHECK_EQ(&storage_[0], GetReferences()); // TODO: Figure out how to use a compile assert. in FixedSizeHandleScope()
|