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.cc820 begin_(begin),
827 uint8_t* const begin_; member in class:art::gc::collector::MarkSweep::CardScanTask
840 ? card_table->Scan<true>(bitmap_, begin_, end_, visitor, minimum_age_)
841 : card_table->Scan<false>(bitmap_, begin_, end_, visitor, minimum_age_);
842 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - "
981 begin_(begin),
986 const uintptr_t begin_; member in class:art::gc::collector::MarkSweep::RecursiveMarkTask
996 bitmap_->VisitMarkedRange(begin_, end_, visitor);
/art/cmdline/
H A Dtoken_range.h42 begin_(token_list_->begin()),
50 begin_(token_list_->begin()),
60 begin_(token_list_->begin()),
70 begin_(token_list_->begin()),
77 begin_(token_list_->begin()),
86 begin_(it_begin),
101 begin_(token_list_->begin()),
145 return begin_;
155 return std::distance(begin_, end_);
166 return *(begin_
420 const iterator begin_; member in struct:art::TokenRange
[all...]
/art/runtime/
H A Ddex_file_verifier.h38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
176 const uint8_t* const begin_; member in class:art::DexFileVerifier
H A Dmem_map.h140 return begin_;
221 uint8_t* const begin_; // Start of data. member in class:art::MemMap
H A Doat_file.h135 : begin_(base), code_offset_(code_offset) {
154 return reinterpret_cast<T>(begin_ + offset);
157 const uint8_t* begin_; member in class:art::OatFile::FINAL
277 const uint8_t* begin_; member in class:art::OatFile
323 friend class gc::collector::DummyOatFile; // For modifying begin_ and end_.
H A Ddex_file.h721 const uint8_t* addr = begin_ + class_def.interfaces_off_;
731 return begin_ + class_def.class_data_off_;
741 const uint8_t* addr = begin_ + code_off;
794 const uint8_t* addr = begin_ + proto_id.parameters_off_;
803 return begin_ + class_def.static_values_off_;
830 return begin_ + code_item->debug_info_off_;
883 return reinterpret_cast<const AnnotationsDirectoryItem*>(begin_ + class_def.annotations_off_);
891 return reinterpret_cast<const AnnotationSetItem*>(begin_ + anno_dir->class_annotations_off_);
933 return reinterpret_cast<const AnnotationSetItem*>(begin_ + offset);
943 return reinterpret_cast<const AnnotationSetItem*>(begin_
1235 const uint8_t* const begin_; member in class:art::DexFile
[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.h66 DCHECK(begin_ != nullptr);
103 *start_address = begin_ + index;
104 *end_address = begin_ + new_index;
108 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr))
118 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr)) << "i=" << i;
130 begin_[index].Assign(value);
137 return begin_[back_index_.LoadRelaxed()].AsMirrorPtr();
145 return begin_[index];
168 return begin_ + front_index_.LoadRelaxed();
171 return begin_
261 StackReference<T>* begin_; member in class:art::gc::accounting::AtomicStack
[all...]
/art/runtime/gc/space/
H A Dlarge_object_space.h83 return begin_;
117 uint8_t* begin_; 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),
260 top_ = begin_;
267 memset(begin_, 0, end_ - begin_);
269 madvise(begin_, end_ - begin_, MADV_DONTNEED);
283 DCHECK_EQ(begin_, top_);
324 DCHECK_LT(begin_ + 1 * MB, top_);
333 DCHECK_EQ(begin_, top
465 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.h374 uint8_t* begin_; member in class:art::ArenaAllocator

Completed in 170 milliseconds