Home
last modified time | relevance | path

Searched refs:end_ (Results 1 – 14 of 14) sorted by relevance

/art/runtime/jdwp/
Djdwp_request.cc28 end_ = bytes + byte_count_; in Request()
45 if (p_ < end_) { in CheckConsumed()
46 CHECK(p_ == end_) << "read too few bytes: " << (end_ - p_); in CheckConsumed()
47 } else if (p_ > end_) { in CheckConsumed()
48 CHECK(p_ == end_) << "read too many bytes: " << (p_ - end_); in CheckConsumed()
Djdwp.h402 size_t size() { return end_ - p_; } in size()
423 const uint8_t* end_; variable
/art/runtime/
Dmapping_table.h67 table_(table), element_(element), end_(table_->DexToPcSize()), encoded_table_ptr_(NULL), in DexToPcIterator()
85 if (element_ != end_) { // Avoid reading beyond the end of the table.
102 const uint32_t end_; // Equal to table_->DexToPcSize(). variable
140 table_(table), element_(element), end_(table_->PcToDexSize()), encoded_table_ptr_(NULL), in PcToDexIterator()
158 if (element_ != end_) { // Avoid reading beyond the end of the table.
175 const uint32_t end_; // Equal to table_->PcToDexSize(). variable
Doat_file.cc56 oat_file->end_ = &oat_contents[oat_contents.size()]; in OpenMemory()
119 : location_(location), begin_(NULL), end_(NULL), dlopen_handle_(NULL) { in OatFile()
156 end_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatlastword")); in Dlopen()
157 if (end_ == NULL) { in Dlopen()
162 end_ += sizeof(uint32_t); in Dlopen()
193 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword"); in ElfFileOpen()
194 if (end_ == NULL) { in ElfFileOpen()
199 end_ += sizeof(uint32_t); in ElfFileOpen()
322 CHECK(end_ != NULL); in End()
323 return end_; in End()
Doat_file.h247 const byte* end_; variable
/art/runtime/gc/accounting/
Dspace_bitmap_test.cc47 end_(end) {} in BitmapVerify()
51 EXPECT_TRUE(obj <= end_); in operator ()()
57 const mirror::Object* end_; member in art::gc::accounting::BitmapVerify
/art/runtime/gc/space/
Ddlmalloc_space.cc277 end_ = begin_ + growth_limit; in SetGrowthLimit()
282 end_ = reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(end_), kPageSize)); in CreateZygoteSpace()
284 DCHECK(IsAligned<accounting::CardTable::kCardSize>(end_)); in CreateZygoteSpace()
286 DCHECK(IsAligned<kPageSize>(end_)); in CreateZygoteSpace()
291 GetMemMap()->UnMapAtEnd(end_); in CreateZygoteSpace()
299 << "End " << reinterpret_cast<const void*>(end_) << "\n" in CreateZygoteSpace()
312 void* mspace = CreateMallocSpace(end_, starting_size, initial_size); in CreateZygoteSpace()
319 new DlMallocSpace(alloc_space_name, mem_map.release(), mspace, end_, end, growth_limit); in CreateZygoteSpace()
419 byte* original_end = end_; in MoreCore()
442 end_ = new_end; in MoreCore()
Dspace.h190 return end_; in End()
217 Space(name, gc_retention_policy), begin_(begin), end_(end) { in ContinuousSpace()
225 byte* end_; variable
Dlarge_object_space.cc140 end_(end), in FreeListSpace()
150 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Walk()
199 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Free()
275 new_header = reinterpret_cast<AllocationHeader*>(end_ - free_end_); in Alloc()
306 uintptr_t free_end_start = reinterpret_cast<uintptr_t>(end_) - free_end_; in Dump()
Dlarge_object_space.h124 return end_; in End()
223 byte* const end_; variable
/art/compiler/dex/
Darena_allocator.cc128 end_(nullptr), in ArenaAllocator()
160 end_ = new_arena->End(); in ObtainNewArenaForAllocation()
167 size_t lost_bytes(end_ - ptr_); in DumpMemStats()
Darena_allocator.h107 if (UNLIKELY(ptr_ + bytes > end_)) { in Alloc()
132 uint8_t* end_; variable
/art/runtime/gc/collector/
Dmark_sweep.cc750 end_(end), in CardScanTask()
757 byte* const end_; member in art::gc::collector::CardScanTask
767 size_t cards_scanned = card_table->Scan(bitmap_, begin_, end_, visitor, minimum_age_); in Run()
770 << reinterpret_cast<void*>(end_) << " = " << cards_scanned; in Run()
908 end_(end) { in RecursiveMarkTask()
914 const uintptr_t end_; member in art::gc::collector::RecursiveMarkTask
923 bitmap_->VisitMarkedRange(begin_, end_, visitor); in Run()
/art/compiler/driver/
Dcompiler_driver.cc1401 end_(end), in ForAllClosure()
1407 if (UNLIKELY(index >= end_)) { in Run()
1421 const size_t end_; member in art::ParallelCompilationManager::ForAllClosure