Searched refs:begin_ (Results 1 - 25 of 26) sorted by relevance

12

/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.cc819 begin_(begin),
826 uint8_t* const begin_; 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_);
841 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - "
980 begin_(begin),
985 const uintptr_t begin_; member in class:art::gc::collector::MarkSweep::RecursiveMarkTask
995 bitmap_->VisitMarkedRange(begin_, end_, visitor);
H A Dimmune_spaces_test.cc34 begin_ = begin;
/art/runtime/gc/accounting/
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...]
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
/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 Doat_file-inl.h39 return reinterpret_cast<const uint8_t*>(method_header) - begin_;
47 return reinterpret_cast<const uint8_t*>(&method_header->code_size_) - begin_;
76 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u);
84 return reinterpret_cast<const uint8_t*>(&method_header->vmap_table_offset_) - begin_;
H A Ddex_file_verifier.cc183 const uint8_t* file_start = reinterpret_cast<const uint8_t*>(begin_);
336 const DexFile::MapList* map = reinterpret_cast<const DexFile::MapList*>(begin_ +
507 (reinterpret_cast<const DexFile::FieldId*>(begin_ + header_->field_ids_off_) + idx)->
548 (reinterpret_cast<const DexFile::MethodId*>(begin_ + header_->method_ids_off_) + idx)->
583 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section")) {
775 (reinterpret_cast<const DexFile::FieldId*>(begin_ + header_->field_ids_off_) + index)->
779 (reinterpret_cast<const DexFile::MethodId*>(begin_ + header_->method_ids_off_) + index)->
791 reinterpret_cast<const DexFile::ClassDef*>(begin_ + header_->class_defs_off_);
1045 const uint8_t* file_end = begin_ + size_;
1471 aligned_offset = ptr_ - begin_;
[all...]
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-inl.h29 const uint8_t* ptr = begin_ + string_id.string_data_off_;
36 const uint8_t* ptr = begin_ + string_id.string_data_off_;
H A Dmem_map.h140 return begin_;
221 uint8_t* const begin_; // Start of data. member in class:art::MemMap
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...]
H A Dmem_map.cc500 : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size),
503 CHECK(begin_ == nullptr);
507 CHECK(begin_ != nullptr);
522 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_);
523 DCHECK_ALIGNED(begin_, kPageSize);
527 uint8_t* old_end = begin_ + size_;
534 size_ = new_end - reinterpret_cast<uint8_t*>(begin_);
536 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_);
604 MEMORY_TOOL_MAKE_DEFINED(base_begin, begin_ - base_begin);
606 MEMORY_TOOL_MAKE_NOACCESS(base_begin, begin_
[all...]
H A Doat_file.cc76 // 3) ComputeFields() to populate the OatFile fields like begin_, using FindDynamicSymbolAddress.
121 begin_ = begin;
172 begin_ = FindDynamicSymbolAddress("oatdata", &symbol_error_msg);
173 if (begin_ == nullptr) {
179 if (requested_base != nullptr && begin_ != requested_base) {
186 begin_, requested_base);
708 if (vaddr <= context->begin_ && context->begin_ < vaddr + memsz) {
729 const uint8_t* const begin_;
1038 begin_(nullpt
[all...]
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
/art/runtime/gc/space/
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 Dmalloc_space.cc126 SetEnd(begin_ + growth_limit);
167 DCHECK_ALIGNED(begin_, accounting::CardTable::kCardSize);
169 DCHECK_ALIGNED(begin_, kPageSize);
178 VLOG(heap) << "Begin " << reinterpret_cast<const void*>(begin_) << "\n"
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
H A Dlarge_object_space.h83 return begin_;
117 uint8_t* begin_; member in class:art::gc::space::LargeObjectSpace
H A Dbump_pointer_space.h85 return growth_end_ - begin_;
H A Dlarge_object_space.cc113 total_objects_allocated_(0), begin_(begin), end_(end) {
158 begin_ = std::min(begin_, reinterpret_cast<uint8_t*>(obj));
H A Dregion_space.cc411 os << "Region[" << idx_ << "]=" << reinterpret_cast<void*>(begin_) << "-" << reinterpret_cast<void*>(top_)
H A Drosalloc_space.cc363 SetEnd(begin_ + starting_size_);
/art/runtime/base/
H A Darena_allocator.cc292 size_t total = ptr_ - begin_;
304 begin_(nullptr),
314 arena_head_->bytes_allocated_ = ptr_ - begin_;
372 begin_ = new_arena->Begin();
373 ptr_ = begin_ + bytes;
380 if (ptr >= begin_ && ptr < end_) {
H A Darena_allocator.h374 uint8_t* begin_; member in class:art::ArenaAllocator

Completed in 455 milliseconds

12