/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() 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 …]
|
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_vector.h | 113 : 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 …]
|
D | bit_struct.h | 125 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
|
D | bit_struct_detail.h | 67 return converter.storage_.val_; in ToUnderlyingStorage() 72 converter.storage_.val_ = storage; in FromUnderlyingStorage() 91 StorageWrapper 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 | 105 storage_(storage), in Compiler() 114 return storage_; in GetCompiledMethodStorage() 119 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 | 145 : storage_(storage) {} in ThunkProvider() 152 CompiledMethodStorage* storage_;
|
D | multi_oat_relative_patcher.cc | 31 *code = storage_->GetThunkCode(patch, debug_name); in GetThunkCode()
|
D | relative_patcher_test.h | 42 : storage_(/*swap_fd=*/ -1), in RelativePatcherTest() 107 &storage_, 384 CompiledMethodStorage storage_; variable
|
/art/libprofile/profile/ |
D | profile_compilation_info.cc | 408 : 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/ |
D | handle_scope.h | 210 StackReference<mirror::Object> storage_[kNumReferences]; variable
|
D | handle_scope-inl.h | 40 DCHECK_EQ(&storage_[0], GetReferences()); // TODO: Figure out how to use a compile assert. in FixedSizeHandleScope()
|