Searched defs:end_ (Results 1 - 13 of 13) sorted by relevance

/art/runtime/gc/collector/
H A Dimmune_region.h57 end_ = end;
66 return end_;
75 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_);
79 mirror::Object* end_; member in class:art::gc::collector::ImmuneRegion
H A Dmark_sweep.cc820 end_(end),
827 uint8_t* const end_; member in class:art::gc::collector::MarkSweep::CardScanTask
839 ? card_table->Scan<true>(bitmap_, begin_, end_, visitor, minimum_age_)
840 : card_table->Scan<false>(bitmap_, begin_, end_, visitor, minimum_age_);
842 << reinterpret_cast<void*>(end_) << " = " << cards_scanned;
981 end_(end) {}
986 const uintptr_t end_; member in class:art::gc::collector::MarkSweep::RecursiveMarkTask
995 bitmap_->VisitMarkedRange(begin_, end_, visitor);
/art/cmdline/
H A Dtoken_range.h43 end_(token_list_->end())
51 end_(token_list_->end())
61 end_(token_list_->end()) {
71 end_(token_list_->end())
78 end_(token_list_->end())
87 end_(it_end) {
102 end_(token_list_->end())
150 return end_;
155 return std::distance(begin_, end_);
395 for (auto it = begin_; it != end_;
421 const iterator end_; member in struct:art::TokenRange
[all...]
/art/runtime/gc/accounting/
H A Dspace_bitmap_test.cc46 end_(end) {}
50 EXPECT_TRUE(obj <= end_);
56 const mirror::Object* end_; member in class:art::gc::accounting::BitmapVerify
/art/runtime/
H A Dmapping_table.h69 table_(table), element_(element), end_(table_->DexToPcSize()), encoded_table_ptr_(nullptr),
72 if (end_ > 0) {
90 if (element_ != end_) { // Avoid reading beyond the end of the table.
107 uint32_t element_; // A value in the range 0 to end_.
108 const uint32_t end_; // Equal to table_->DexToPcSize(). member in class:art::MappingTable::DexToPcIterator
146 table_(table), element_(element), end_(table_->PcToDexSize()), encoded_table_ptr_(nullptr),
149 if (end_ > 0) {
167 if (element_ != end_) { // Avoid reading beyond the end of the table.
185 const uint32_t end_; // Equal to table_->PcToDexSize(). member in class:art::MappingTable::PcToDexIterator
H A Doat_file.h280 const uint8_t* end_; member in class:art::OatFile
323 friend class gc::collector::DummyOatFile; // For modifying begin_ and end_.
/art/runtime/gc/space/
H A Dlarge_object_space.h87 return end_;
118 uint8_t* end_; member in class:art::gc::space::LargeObjectSpace
H A Dregion_space.h237 begin_(nullptr), top_(nullptr), end_(nullptr),
243 : idx_(idx), begin_(begin), top_(begin), end_(end),
267 memset(begin_, 0, end_ - begin_);
269 madvise(begin_, end_ - begin_, MADV_DONTNEED);
445 return end_;
449 return begin_ <= reinterpret_cast<uint8_t*>(ref) && reinterpret_cast<uint8_t*>(ref) < end_;
457 DCHECK_EQ(top_, end_);
460 DCHECK_EQ(top_, end_);
468 uint8_t* end_; // The end address of the region. member in class:art::gc::space::FINAL::Region
H A Dspace.h276 return end_.LoadRelaxed();
287 end_.StoreRelaxed(end);
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
334 Atomic<uint8_t*> end_; member in class:art::gc::space::ContinuousSpace
/art/runtime/jdwp/
H A Djdwp.h472 size_t size() { return end_ - p_; }
493 const uint8_t* end_; member in class:art::JDWP::Request
/art/runtime/base/
H A Darena_allocator.h309 if (UNLIKELY(bytes > static_cast<size_t>(end_ - ptr_))) {
328 const size_t remain = end_ - ptr_;
375 uint8_t* end_; member in class:art::ArenaAllocator
/art/compiler/optimizing/
H A Dssa_liveness_analysis.h60 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) {
66 size_t GetEnd() const { return end_; }
70 return (start_ >= other.start_ && start_ < other.end_)
71 || (other.start_ >= start_ && other.start_ < end_);
75 return end_ <= other.start_;
79 stream << "[" << start_ << "," << end_ << ")"; local
84 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator));
93 size_t end_; member in class:art::FINAL
290 first_range_->end_ = position;
382 first_range_->end_
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc1929 end_(end),
1935 if (UNLIKELY(index >= end_)) {
1949 const size_t end_; member in class:art::ParallelCompilationManager::ForAllClosure

Completed in 161 milliseconds