/art/runtime/gc/collector/ |
D | immune_region.h | 57 end_ = end; in SetEnd() 66 return end_; in End() 75 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_); in UpdateSize() 79 mirror::Object* end_; variable
|
D | mark_sweep.cc | 818 end_(end), in CardScanTask() 825 uint8_t* const end_; member in art::gc::collector::MarkSweep::CardScanTask 837 ? card_table->Scan<true>(bitmap_, begin_, end_, visitor, minimum_age_) in Run() 838 : card_table->Scan<false>(bitmap_, begin_, end_, visitor, minimum_age_); in Run() 840 << reinterpret_cast<void*>(end_) << " = " << cards_scanned; in Run() 979 end_(end) {} in RecursiveMarkTask() 984 const uintptr_t end_; member in art::gc::collector::MarkSweep::RecursiveMarkTask 993 bitmap_->VisitMarkedRange(begin_, end_, visitor); in Run()
|
D | immune_spaces_test.cc | 37 end_ = end; in DummyOatFile()
|
/art/runtime/ |
D | mapping_table.h | 69 table_(table), element_(element), end_(table_->DexToPcSize()), encoded_table_ptr_(nullptr), in DexToPcIterator() 72 if (end_ > 0) { in DexToPcIterator() 90 if (element_ != end_) { // Avoid reading beyond the end of the table. 108 const uint32_t end_; // Equal to table_->DexToPcSize(). variable 146 table_(table), element_(element), end_(table_->PcToDexSize()), encoded_table_ptr_(nullptr), in PcToDexIterator() 149 if (end_ > 0) { in PcToDexIterator() 167 if (element_ != end_) { // Avoid reading beyond the end of the table. 185 const uint32_t end_; // Equal to table_->PcToDexSize(). variable
|
D | oat_file_manager.cc | 156 end_(type_indexes_.Indexes().end()) { } in TypeIndexInfo() 165 return end_; in GetIteratorEnd() 185 BitVector::IndexIterator end_; member in art::TypeIndexInfo
|
D | oat_file.cc | 140 end_ = end; in SetEnd() 227 end_ = FindDynamicSymbolAddress("oatlastword", &symbol_error_msg); in ComputeFields() 228 if (end_ == nullptr) { in ComputeFields() 235 end_ += sizeof(uint32_t); in ComputeFields() 1237 end_(nullptr), in OatFile() 1261 CHECK(end_ != nullptr); in End() 1262 return end_; in End()
|
D | oat_file.h | 327 const uint8_t* end_; variable
|
/art/runtime/jdwp/ |
D | jdwp_request.cc | 31 end_ = bytes + byte_count_; in Request() 48 if (p_ < end_) { in CheckConsumed() 49 CHECK(p_ == end_) << "read too few bytes: " << (end_ - p_); in CheckConsumed() 50 } else if (p_ > end_) { in CheckConsumed() 51 CHECK(p_ == end_) << "read too many bytes: " << (p_ - end_); in CheckConsumed()
|
D | jdwp.h | 477 size_t size() { return end_ - p_; } in size() 498 const uint8_t* end_; variable
|
/art/cmdline/ |
D | token_range.h | 45 end_(token_list_->end()) in TokenRange() 53 end_(token_list_->end()) in TokenRange() 63 end_(token_list_->end()) { 73 end_(token_list_->end()) in TokenRange() 80 end_(token_list_->end()) in TokenRange() 89 end_(it_end) { in TokenRange() 104 end_(token_list_->end()) in TokenRange() 152 return end_; in end() 157 return std::distance(begin_, end_); in Size() 397 for (auto it = begin_; it != end_; ++it) { in RemoveIf() [all …]
|
/art/runtime/gc/space/ |
D | bump_pointer_space-inl.h | 49 uint8_t* end = end_.LoadRelaxed(); in AllocThreadUnsafe() 54 end_.StoreRelaxed(end + num_bytes); in AllocThreadUnsafe() 71 old_end = end_.LoadRelaxed(); in AllocNonvirtualWithoutAccounting() 77 } while (!end_.CompareExchangeWeakSequentiallyConsistent(old_end, new_end)); in AllocNonvirtualWithoutAccounting()
|
D | region_space.h | 258 begin_(nullptr), top_(nullptr), end_(nullptr), in Region() 267 end_ = end; in Init() 435 return end_; in End() 439 return begin_ <= reinterpret_cast<uint8_t*>(ref) && reinterpret_cast<uint8_t*>(ref) < end_; in Contains() 447 DCHECK_EQ(Top(), end_); in RecordThreadLocalAllocations() 450 DCHECK_LE(Top(), end_); in RecordThreadLocalAllocations() 457 uint8_t* end_; // The end address of the region. variable
|
D | space.h | 275 return end_.LoadRelaxed(); in End() 286 end_.StoreRelaxed(end); in SetEnd() 326 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) { in ContinuousSpace() 333 Atomic<uint8_t*> end_; variable
|
D | region_space-inl.h | 101 if (UNLIKELY(new_top > end_)) { in Alloc() 106 DCHECK_LE(Top(), end_); in Alloc() 107 DCHECK_LT(old_top, end_); in Alloc() 108 DCHECK_LE(new_top, end_); in Alloc()
|
D | large_object_space.cc | 115 total_objects_allocated_(0), begin_(begin), end_(end) { in LargeObjectSpace() 154 end_ = std::max(end_, reinterpret_cast<uint8_t*>(obj) + allocation_size); in Alloc() 378 const uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Walk() 416 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Free() 534 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Dump() 564 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in SetAllLargeObjectsAsZygoteObjects()
|
D | large_object_space.h | 87 return end_; in End() 122 uint8_t* end_; variable
|
D | region_space.cc | 531 << "-" << reinterpret_cast<void*>(end_) in Dump() 560 ZeroAndProtectRegion(begin_, end_); in Clear()
|
/art/runtime/base/ |
D | arena_allocator.cc | 391 end_(nullptr), in ArenaAllocator() 411 if (UNLIKELY(rounded_bytes > static_cast<size_t>(end_ - ptr_))) { in AllocWithMemoryTool() 433 if (UNLIKELY(padding + rounded_bytes > static_cast<size_t>(end_ - ptr_))) { in AllocWithMemoryToolAlign16() 457 if (static_cast<size_t>(end_ - ptr_) > new_arena->Size() - bytes) { in AllocFromNewArena() 472 end_ = new_arena->End(); in AllocFromNewArena() 483 noaccess_end = end_; in AllocFromNewArenaWithMemoryTool() 496 if (ptr >= begin_ && ptr < end_) { in Contains() 525 (arena_head_ == nullptr) ? 0 : (end_ - ptr_) - arena_head_->RemainingSpace(); in GetMemStats()
|
D | arena_allocator.h | 297 if (UNLIKELY(bytes > static_cast<size_t>(end_ - ptr_))) { 316 if (UNLIKELY(padding + bytes > static_cast<size_t>(end_ - ptr_))) { 344 const size_t remain = end_ - ptr_; 398 uint8_t* end_; variable
|
/art/runtime/gc/accounting/ |
D | space_bitmap_test.cc | 46 end_(end) {} in BitmapVerify() 50 EXPECT_TRUE(obj <= end_); in operator ()() 56 const mirror::Object* end_; member in art::gc::accounting::BitmapVerify
|
/art/compiler/optimizing/ |
D | ssa_liveness_analysis.h | 63 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { in LiveRange() 69 size_t GetEnd() const { return end_; } in GetEnd() 73 return (start_ >= other.start_ && start_ < other.end_) in IntersectsWith() 74 || (other.start_ >= start_ && other.start_ < end_); in IntersectsWith() 78 return end_ <= other.start_; in IsBefore() 82 stream << "[" << start_ << "," << end_ << ")"; in Dump() 87 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator)); in Dup() 96 size_t end_; variable 342 first_range_->end_ = position; 438 first_range_->end_ = end; in AddLoopRange()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 1572 end_(end), in ForAllClosure() 1578 if (UNLIKELY(index >= end_)) { in Run() 1592 const size_t end_; member in art::ParallelCompilationManager::ForAllClosure
|