/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() 59 if (storage_ != nullptr) { in ~BitVector() 61 allocator_->Free(storage_); in ~BitVector() 88 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet() 108 uint32_t this_storage = storage_[i]; in IsSubsetOf() 109 uint32_t other_storage = other->storage_[i]; in IsSubsetOf() 125 storage_[idx] &= src->GetRawStorageWord(idx); 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() 276 memcpy(dst, storage_, vec_len); in CopyTo() 279 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 | 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() 179 StorageType storage_; member
|
D | bit_struct_detail.h | 66 return converter.storage_.val_; in ToUnderlyingStorage() 71 converter.storage_.val_ = storage; in FromUnderlyingStorage() 90 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 | 100 storage_(storage), in Compiler() 109 return storage_; in GetCompiledCodeStorage() 114 CompiledCodeStorage* const storage_; variable
|
/art/dex2oat/driver/ |
D | compiled_method.h | 75 return storage_; in GetStorage() 92 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() 109 &storage_, 395 CompiledMethodStorage storage_; variable
|
/art/libprofile/profile/ |
D | profile_compilation_info.cc | 425 : storage_(nullptr), in SafeBuffer() 430 : storage_(new uint8_t[size]), in SafeBuffer() 431 ptr_current_(storage_.get()), in SafeBuffer() 504 storage_ = std::move(compressed_buffer); in Deflate() 505 ptr_current_ = storage_.get() + output_size; in Deflate() 512 DCHECK(ptr_current_ == storage_.get()); in Inflate() 522 DCHECK(ptr_current_ == storage_.get()); in Inflate() 545 return storage_.get(); in Get() 550 return ptr_end_ - storage_.get(); in Size() 554 std::swap(storage_, other.storage_); in Swap() [all …]
|
/art/runtime/ |
D | handle_scope.h | 199 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()
|