Searched refs:increment (Results 1 – 8 of 8) sorted by relevance
/art/runtime/gc/space/ |
D | malloc_space.cc | 130 void* MallocSpace::MoreCore(intptr_t increment) { in MoreCore() argument 133 if (increment != 0) { in MoreCore() 134 VLOG(heap) << "MallocSpace::MoreCore " << PrettySize(increment); in MoreCore() 135 byte* new_end = original_end + increment; in MoreCore() 136 if (increment > 0) { in MoreCore() 140 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetName()); in MoreCore() 143 CHECK_GE(original_end + increment, Begin()); in MoreCore() 150 size_t size = -increment; in MoreCore()
|
D | dlmalloc_space.cc | 217 extern "C" void* art_heap_morecore(void* mspace, intptr_t increment) { in art_heap_morecore() argument 234 return dlmalloc_space->MoreCore(increment); in art_heap_morecore()
|
D | rosalloc_space.cc | 228 extern "C" void* art_heap_rosalloc_morecore(allocator::RosAlloc* rosalloc, intptr_t increment) { in art_heap_rosalloc_morecore() argument 233 return rosalloc_space->MoreCore(increment); in art_heap_rosalloc_morecore()
|
D | malloc_space.h | 76 void* MoreCore(intptr_t increment);
|
/art/runtime/gc/allocator/ |
D | dlmalloc.cc | 23 extern "C" void* art_heap_morecore(void* m, intptr_t increment);
|
D | rosalloc.cc | 33 extern "C" void* art_heap_rosalloc_morecore(RosAlloc* rosalloc, intptr_t increment); 171 size_t increment = std::min(std::max(2 * MB, req_byte_size - last_free_page_run_size), in AllocPages() local 173 DCHECK_EQ(increment % kPageSize, static_cast<size_t>(0)); in AllocPages() 174 size_t new_footprint = footprint_ + increment; in AllocPages() 181 art_heap_rosalloc_morecore(this, increment); in AllocPages() 185 last_free_page_run->SetByteSize(this, last_free_page_run_size + increment); in AllocPages() 194 new_free_page_run->SetByteSize(this, increment); in AllocPages() 204 DCHECK_LE(footprint_ + increment, capacity_); in AllocPages()
|
/art/compiler/dex/quick/x86/ |
D | target_x86.cc | 1447 static void AdvanceLoc(std::vector<uint8_t>&buf, uint32_t increment) { in AdvanceLoc() argument 1448 if (increment < 64) { in AdvanceLoc() 1450 buf.push_back(0x1 << 6 | increment); in AdvanceLoc() 1451 } else if (increment < 256) { in AdvanceLoc() 1454 buf.push_back(increment); in AdvanceLoc() 1455 } else if (increment < 256 * 256) { in AdvanceLoc() 1458 buf.push_back(increment & 0xff); in AdvanceLoc() 1459 buf.push_back((increment >> 8) & 0xff); in AdvanceLoc() 1463 PushWord(buf, increment); in AdvanceLoc()
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 347 add r0, r0, #12 @ increment r0 to skip gprs_[0..2] 12=4*3
|