Home
last modified time | relevance | path

Searched refs:end_ (Results 1 – 22 of 22) sorted by relevance

/art/runtime/
Dmapping_table.h69 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
Doat_file.cc97 oat_file->end_ = elf_file->Begin() + size + offset; in OpenWithElfFile()
202 : location_(location), begin_(nullptr), end_(nullptr), bss_begin_(nullptr), bss_end_(nullptr), in OatFile()
255 end_ = reinterpret_cast<uint8_t*>(dlsym(dlopen_handle_, "oatlastword")); in Dlopen()
256 if (end_ == nullptr) { in Dlopen()
262 end_ += sizeof(uint32_t); in Dlopen()
353 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword"); in ElfFileOpen()
354 if (end_ == nullptr) { in ElfFileOpen()
359 end_ += sizeof(uint32_t); in ElfFileOpen()
516 CHECK(end_ != nullptr); in End()
517 return end_; in End()
Doat_file.h304 const uint8_t* end_; variable
/art/runtime/gc/collector/
Dimmune_region.h56 end_ = end; in SetEnd()
64 return end_; in End()
72 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_); in UpdateSize()
76 mirror::Object* end_; variable
Dimmune_region.cc49 } else if (space_begin >= end_) { // Space is after the immune region. in AddContinuousSpace()
61 end_ >= reinterpret_cast<mirror::Object*>(space->Limit()); in ContainsSpace()
Dmark_sweep.cc771 end_(end), in CardScanTask()
778 uint8_t* const end_; member in art::gc::collector::CardScanTask
790 card_table->Scan<true>(bitmap_, begin_, end_, visitor, minimum_age_) : in Run()
791 card_table->Scan<false>(bitmap_, begin_, end_, visitor, minimum_age_); in Run()
793 << reinterpret_cast<void*>(end_) << " = " << cards_scanned; in Run()
913 end_(end) { in RecursiveMarkTask()
919 const uintptr_t end_; member in art::gc::collector::RecursiveMarkTask
928 bitmap_->VisitMarkedRange(begin_, end_, visitor); in Run()
/art/runtime/jdwp/
Djdwp_request.cc30 end_ = bytes + byte_count_; in Request()
47 if (p_ < end_) { in CheckConsumed()
48 CHECK(p_ == end_) << "read too few bytes: " << (end_ - p_); in CheckConsumed()
49 } else if (p_ > end_) { in CheckConsumed()
50 CHECK(p_ == end_) << "read too many bytes: " << (p_ - end_); in CheckConsumed()
Djdwp.h477 size_t size() { return end_ - p_; } in size()
498 const uint8_t* end_; variable
/art/cmdline/
Dtoken_range.h43 end_(token_list_->end()) in TokenRange()
51 end_(token_list_->end()) in TokenRange()
61 end_(token_list_->end()) {
71 end_(token_list_->end()) in TokenRange()
78 end_(token_list_->end()) in TokenRange()
87 end_(it_end) { in TokenRange()
102 end_(token_list_->end()) in TokenRange()
150 return end_; in end()
155 return std::distance(begin_, end_); in Size()
395 for (auto it = begin_; it != end_; ++it) { in RemoveIf()
[all …]
/art/runtime/gc/space/
Dbump_pointer_space-inl.h48 uint8_t* end = end_.LoadRelaxed(); in AllocThreadUnsafe()
53 end_.StoreRelaxed(end + num_bytes); in AllocThreadUnsafe()
70 old_end = end_.LoadRelaxed(); in AllocNonvirtualWithoutAccounting()
76 } while (!end_.CompareExchangeWeakSequentiallyConsistent(old_end, new_end)); in AllocNonvirtualWithoutAccounting()
Dregion_space.h235 begin_(nullptr), top_(nullptr), end_(nullptr), in Region()
241 : idx_(idx), begin_(begin), top_(begin), end_(end), in Region()
265 memset(begin_, 0, end_ - begin_); in Clear()
267 madvise(begin_, end_ - begin_, MADV_DONTNEED); in Clear()
443 return end_; in End()
447 return begin_ <= reinterpret_cast<uint8_t*>(ref) && reinterpret_cast<uint8_t*>(ref) < end_; in Contains()
455 DCHECK_EQ(top_, end_); in RecordThreadLocalAllocations()
458 DCHECK_EQ(top_, end_); in RecordThreadLocalAllocations()
466 uint8_t* end_; // The end address of the region. variable
Dspace.h276 return end_.LoadRelaxed(); in End()
287 end_.StoreRelaxed(end); in SetEnd()
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) { in ContinuousSpace()
334 Atomic<uint8_t*> end_; variable
Dlarge_object_space.cc109 total_objects_allocated_(0), begin_(begin), end_(end) { in LargeObjectSpace()
156 if (end_ == nullptr || obj_end > end_) { in Alloc()
157 end_ = obj_end; in Alloc()
380 const uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Walk()
418 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Free()
536 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Dump()
566 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in SetAllLargeObjectsAsZygoteObjects()
Dregion_space-inl.h125 if (UNLIKELY(new_top > end_)) { in Alloc()
130 DCHECK_LE(atomic_top->LoadRelaxed(), end_); in Alloc()
131 DCHECK_LT(old_top, end_); in Alloc()
132 DCHECK_LE(new_top, end_); in Alloc()
Dlarge_object_space.h87 return end_; in End()
118 uint8_t* end_; variable
Dregion_space.cc412 << "-" << reinterpret_cast<void*>(end_) in Dump()
/art/runtime/gc/accounting/
Dspace_bitmap_test.cc46 end_(end) {} in BitmapVerify()
50 EXPECT_TRUE(obj <= end_); in operator ()()
56 const mirror::Object* end_; member in art::gc::accounting::BitmapVerify
/art/runtime/base/
Darena_allocator.cc255 end_(nullptr), in ArenaAllocator()
271 if (UNLIKELY(ptr_ + rounded_bytes > end_)) { in AllocValgrind()
302 end_ = new_arena->End(); in ObtainNewArenaForAllocation()
306 if (ptr >= begin_ && ptr < end_) { in Contains()
333 (arena_head_ == nullptr) ? 0 : (end_ - ptr_) - arena_head_->RemainingSpace(); in GetMemStats()
Darena_allocator.h214 if (UNLIKELY(ptr_ + bytes > end_)) {
237 const size_t remain = end_ - ptr_;
280 uint8_t* end_; variable
/art/compiler/optimizing/
Dssa_liveness_analysis.h60 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { in LiveRange()
66 size_t GetEnd() const { return end_; } in GetEnd()
70 return (start_ >= other.start_ && start_ < other.end_) in IntersectsWith()
71 || (other.start_ >= start_ && other.start_ < end_); in IntersectsWith()
75 return end_ <= other.start_; in IsBefore()
79 stream << "[" << start_ << ", " << end_ << ")"; in Dump()
84 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator)); in Dup()
93 size_t end_; variable
286 first_range_->end_ = position;
378 first_range_->end_ = end; in AddLoopRange()
Dbounds_check_elimination.cc503 end_(nullptr), in MonotonicValueRange()
513 void SetEnd(HInstruction* end) { end_ = end; } in SetEnd()
695 if (end_ == nullptr) { in NarrowWithDeoptimization()
704 !end_->GetBlock()->Dominates(pre_header)) { in NarrowWithDeoptimization()
756 if (initial_->IsIntConstant() && end_->IsIntConstant()) { in LoopEntryTestUseful()
758 int32_t end_val = end_->AsIntConstant()->GetValue(); in LoopEntryTestUseful()
785 DCHECK(end_->GetBlock()->Dominates(pre_header)); in TransformLoopForDeoptimizationIfNeeded()
822 cond = new (graph->GetArena()) HGreaterThan(initial_, end_); in AddLoopBodyEntryTest()
824 cond = new (graph->GetArena()) HGreaterThanOrEqual(initial_, end_); in AddLoopBodyEntryTest()
829 cond = new (graph->GetArena()) HLessThan(initial_, end_); in AddLoopBodyEntryTest()
[all …]
/art/compiler/driver/
Dcompiler_driver.cc1641 end_(end), in ForAllClosure()
1647 if (UNLIKELY(index >= end_)) { in Run()
1661 const size_t end_; member in art::ParallelCompilationManager::ForAllClosure