/art/runtime/jdwp/ |
D | jdwp_request.cc | 28 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()
|
D | jdwp.h | 402 size_t size() { return end_ - p_; } in size() 423 const uint8_t* end_; variable
|
/art/runtime/ |
D | mapping_table.h | 67 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
|
D | oat_file.cc | 56 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()
|
D | oat_file.h | 247 const byte* end_; variable
|
/art/runtime/gc/accounting/ |
D | space_bitmap_test.cc | 47 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/ |
D | dlmalloc_space.cc | 277 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()
|
D | space.h | 190 return end_; in End() 217 Space(name, gc_retention_policy), begin_(begin), end_(end) { in ContinuousSpace() 225 byte* end_; variable
|
D | large_object_space.cc | 140 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()
|
D | large_object_space.h | 124 return end_; in End() 223 byte* const end_; variable
|
/art/compiler/dex/ |
D | arena_allocator.cc | 128 end_(nullptr), in ArenaAllocator() 160 end_ = new_arena->End(); in ObtainNewArenaForAllocation() 167 size_t lost_bytes(end_ - ptr_); in DumpMemStats()
|
D | arena_allocator.h | 107 if (UNLIKELY(ptr_ + bytes > end_)) { in Alloc() 132 uint8_t* end_; variable
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 750 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/ |
D | compiler_driver.cc | 1401 end_(end), in ForAllClosure() 1407 if (UNLIKELY(index >= end_)) { in Run() 1421 const size_t end_; member in art::ParallelCompilationManager::ForAllClosure
|