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

/art/runtime/gc/accounting/
H A Datomic_stack.h47 DCHECK(begin_ != NULL);
51 int result = madvise(begin_, sizeof(T) * capacity_, MADV_DONTNEED);
72 begin_[index] = value;
83 begin_[index] = value;
90 return begin_[back_index_];
98 return begin_[index];
117 return const_cast<T*>(begin_ + front_index_);
121 return const_cast<T*>(begin_ + back_index_);
159 begin_(NULL),
171 begin_
188 T* begin_; member in class:art::gc::accounting::AtomicStack
[all...]
H A Dspace_bitmap_test.cc46 begin_(begin),
50 EXPECT_TRUE(obj >= begin_);
56 const mirror::Object* begin_; member in class:art::gc::accounting::BitmapVerify
/art/runtime/
H A Ddex_file-inl.h28 const byte* ptr = begin_ + string_id.string_data_off_;
34 const byte* ptr = begin_ + string_id.string_data_off_;
H A Dmem_map.h69 return begin_;
92 byte* const begin_; // Start of data. member in class:art::MemMap
H A Doat_file.cc55 oat_file->begin_ = &oat_contents[0];
119 : location_(location), begin_(NULL), end_(NULL), dlopen_handle_(NULL) {
142 begin_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatdata"));
143 if (begin_ == NULL) {
147 if (requested_base != NULL && begin_ != requested_base) {
151 << reinterpret_cast<const void*>(begin_) << " != expected="
179 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
180 if (begin_ == NULL) {
184 if (requested_base != NULL && begin_ != requested_base) {
188 << reinterpret_cast<const void*>(begin_) << " !
[all...]
H A Ddex_file_verifier.h31 : dex_file_(dex_file), begin_(begin), size_(size),
86 const byte* begin_; member in class:art::DexFileVerifier
H A Dmem_map.cc158 : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size),
161 CHECK(begin_ == NULL);
165 CHECK(begin_ != NULL);
H A Doat_file.h128 return reinterpret_cast<T>(begin_ + offset);
131 const byte* begin_; member in class:art::OatFile::OatMethod
244 const byte* begin_; member in class:art::OatFile
H A Ddex_file_verifier.cc111 uint32_t file_start = reinterpret_cast<uint32_t>(begin_);
169 const DexFile::MapList* map = reinterpret_cast<const DexFile::MapList*>(begin_ + header_->map_off_);
386 if (!CheckPointerRange(begin_ + offset, begin_ + aligned_offset, "section")) {
693 const byte* file_end = begin_ + size_;
1132 aligned_offset = reinterpret_cast<uint32_t>(ptr_) - reinterpret_cast<uint32_t>(begin_);
1206 uint32_t next_offset = reinterpret_cast<uint32_t>(ptr_) - reinterpret_cast<uint32_t>(begin_);
1216 const DexFile::MapList* map = reinterpret_cast<const DexFile::MapList*>(begin_ + header_->map_off_);
1221 ptr_ = begin_;
1248 ptr_ = begin_
[all...]
H A Ddex_file.h609 const byte* addr = begin_ + class_def.interfaces_off_;
619 return begin_ + class_def.class_data_off_;
628 const byte* addr = begin_ + code_off;
676 const byte* addr = begin_ + proto_id.parameters_off_;
685 return begin_ + class_def.static_values_off_;
709 return begin_ + code_item->debug_info_off_;
809 return begin_;
841 : begin_(base),
854 CHECK(begin_ != NULL) << GetLocation();
872 const byte* const begin_; member in class:art::DexFile
[all...]
H A Ddex_file.cc288 const byte* b = begin_;
/art/compiler/dex/
H A Darena_allocator.cc127 begin_(nullptr),
139 arena_head_->bytes_allocated_ = ptr_ - begin_;
159 ptr_ = begin_ = new_arena->Begin();
H A Darena_allocator.h131 uint8_t* begin_; member in class:art::ArenaAllocator
/art/runtime/gc/space/
H A Dspace.h185 return begin_;
217 Space(name, gc_retention_policy), begin_(begin), end_(end) {
222 byte* const begin_; member in class:art::gc::space::ContinuousSpace
H A Dlarge_object_space.h119 return begin_;
222 byte* const begin_; member in class:art::gc::space::FreeListSpace
H A Ddlmalloc_space.cc277 end_ = begin_ + growth_limit;
283 DCHECK(IsAligned<accounting::CardTable::kCardSize>(begin_));
285 DCHECK(IsAligned<kPageSize>(begin_));
298 VLOG(heap) << "Begin " << reinterpret_cast<const void*>(begin_) << "\n"
H A Dlarge_object_space.cc139 begin_(begin),
/art/runtime/gc/collector/
H A Dmark_sweep.cc749 begin_(begin),
756 byte* const begin_;
767 size_t cards_scanned = card_table->Scan(bitmap_, begin_, end_, visitor, minimum_age_);
769 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - "
907 begin_(begin),
913 const uintptr_t begin_; member in class:art::gc::collector::RecursiveMarkTask
923 bitmap_->VisitMarkedRange(begin_, end_, visitor);

Completed in 203 milliseconds