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

/art/runtime/gc/collector/
H A Dimmune_region.h48 return reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(begin_) < size_;
52 begin_ = begin;
62 return begin_;
75 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_);
78 mirror::Object* begin_; member in class:art::gc::collector::ImmuneRegion
H A Dmark_sweep.cc817 begin_(begin),
824 uint8_t* const begin_; member in class:art::gc::collector::MarkSweep::CardScanTask
837 ? card_table->Scan<true>(bitmap_, begin_, end_, visitor, minimum_age_)
838 : card_table->Scan<false>(bitmap_, begin_, end_, visitor, minimum_age_);
839 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - "
978 begin_(begin),
983 const uintptr_t begin_; member in class:art::gc::collector::MarkSweep::RecursiveMarkTask
993 bitmap_->VisitMarkedRange(begin_, end_, visitor);
/art/cmdline/
H A Dtoken_range.h44 begin_(token_list_->begin()),
52 begin_(token_list_->begin()),
62 begin_(token_list_->begin()),
72 begin_(token_list_->begin()),
79 begin_(token_list_->begin()),
88 begin_(it_begin),
103 begin_(token_list_->begin()),
147 return begin_;
157 return std::distance(begin_, end_);
168 return *(begin_
422 const iterator begin_; member in struct:art::TokenRange
[all...]
/art/runtime/
H A Ddex_file_verifier.h48 begin_(begin),
200 const uint8_t* const begin_; member in class:art::DexFileVerifier
H A Dmem_map.h137 return begin_;
227 uint8_t* begin_; // Start of data. May be changed by AlignBy. member in class:art::MemMap
H A Doat_file.h147 : begin_(base), code_offset_(code_offset) {
166 return reinterpret_cast<T>(begin_ + offset);
169 const uint8_t* begin_; member in class:art::OatFile::FINAL
316 const uint8_t* begin_; member in class:art::OatFile
365 friend class gc::collector::DummyOatFile; // For modifying begin_ and end_.
H A Ddex_file.h727 const uint8_t* addr = begin_ + class_def.interfaces_off_;
755 return begin_ + class_def.class_data_off_;
765 const uint8_t* addr = begin_ + code_off;
815 const uint8_t* addr = begin_ + proto_id.parameters_off_;
824 return begin_ + class_def.static_values_off_;
829 return begin_ + call_site_id.data_off_;
855 return begin_ + code_item->debug_info_off_;
908 return reinterpret_cast<const AnnotationsDirectoryItem*>(begin_ + class_def.annotations_off_);
916 return reinterpret_cast<const AnnotationSetItem*>(begin_ + anno_dir->class_annotations_off_);
958 return reinterpret_cast<const AnnotationSetItem*>(begin_
1179 const uint8_t* const begin_; member in class:art::DexFile::MethodHandleType
[all...]
/art/runtime/gc/accounting/
H A Dspace_bitmap_test.cc45 begin_(begin),
49 EXPECT_TRUE(obj >= begin_);
55 const mirror::Object* begin_; member in class:art::gc::accounting::BitmapVerify
H A Datomic_stack.h68 DCHECK(begin_ != nullptr);
105 *start_address = begin_ + index;
106 *end_address = begin_ + new_index;
110 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr))
120 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr)) << "i=" << i;
132 begin_[index].Assign(value);
139 return begin_[back_index_.LoadRelaxed()].AsMirrorPtr();
147 return begin_[index];
170 return begin_ + front_index_.LoadRelaxed();
173 return begin_
263 StackReference<T>* begin_; member in class:art::gc::accounting::AtomicStack
[all...]
/art/runtime/gc/space/
H A Dlarge_object_space.h83 return begin_;
121 uint8_t* begin_; member in class:art::gc::space::LargeObjectSpace
H A Dregion_space.h253 begin_(nullptr), top_(nullptr), end_(nullptr),
260 begin_ = begin;
284 top_.StoreRelaxed(begin_);
291 ZeroAndReleasePages(begin_, end_ - begin_);
306 DCHECK_EQ(begin_, Top());
353 DCHECK_LT(begin_ + kRegionSize, Top());
362 DCHECK_EQ(begin_, Top());
426 DCHECK_LT(begin_ + kRegionSize, Top());
430 DCHECK_EQ(begin_, To
472 uint8_t* begin_; // The begin address of the region. member in class:art::gc::space::FINAL::Region
[all...]
H A Dspace.h271 return begin_;
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
331 uint8_t* begin_; member in class:art::gc::space::ContinuousSpace
/art/runtime/base/
H A Darena_allocator.h396 uint8_t* begin_; member in class:art::ArenaAllocator

Completed in 377 milliseconds