Searched defs:increment (Results 1 - 7 of 7) sorted by path

/art/compiler/optimizing/
H A Dbounds_check_elimination.cc496 int32_t increment,
505 increment_(increment),
673 // b) The increment_ is 1/-1. An increment of 2, for example, may skip end_.
690 // end_ so that boundaries are covered by the loop. An increment of 2,
1176 // Make sure the comparison is in the loop header so each increment is
1198 // increment/decrement.
1488 int32_t increment; local
1489 if (ValueBound::IsAddOrSubAConstant(instruction, &left, &increment)) {
1493 if (increment == 0) {
1510 bound = increment >
493 MonotonicValueRange(ArenaAllocator* allocator, HPhi* induction_variable, HInstruction* initial, int32_t increment, ValueBound bound) argument
[all...]
H A Dbounds_check_elimination_test.cc361 // for (int i=initial; i<array.length; i+=increment) { array[i] = 10; }
365 int increment,
377 HInstruction* constant_increment = graph->GetIntConstant(increment);
496 // for (int i=array.length; i>0; i+=increment) { array[i-1] = 10; }
500 int increment = -1,
512 HInstruction* constant_increment = graph->GetIntConstant(increment);
624 // for (int i=0; i<10; i+=increment) { array[i] = 10; }
628 int increment,
639 HInstruction* constant_increment = graph->GetIntConstant(increment);
362 BuildSSAGraph1(ArenaAllocator* allocator, HInstruction** bounds_check, int initial, int increment, IfCondition cond = kCondGE) argument
625 BuildSSAGraph3(ArenaAllocator* allocator, HInstruction** bounds_check, int initial, int increment, IfCondition cond) argument
/art/runtime/gc/allocator/
H A Ddlmalloc.cc23 static void* art_heap_morecore(void* m, intptr_t increment);
42 static void* art_heap_morecore(void* m, intptr_t increment) { argument
43 return ::art::gc::allocator::ArtDlMallocMoreCore(m, increment);
H A Drosalloc.cc176 size_t increment = std::min(std::max(2 * MB, req_byte_size - last_free_page_run_size), local
178 DCHECK_EQ(increment % kPageSize, static_cast<size_t>(0));
179 size_t new_footprint = footprint_ + increment;
186 ArtRosAllocMoreCore(this, increment);
190 last_free_page_run->SetByteSize(this, last_free_page_run_size + increment);
199 new_free_page_run->SetByteSize(this, increment);
209 DCHECK_LE(footprint_ + increment, capacity_);
/art/runtime/gc/space/
H A Ddlmalloc_space.cc322 void* ArtDlMallocMoreCore(void* mspace, intptr_t increment) { argument
339 return dlmalloc_space->MoreCore(increment);
H A Dmalloc_space.cc130 void* MallocSpace::MoreCore(intptr_t increment) { argument
133 if (increment != 0) {
134 VLOG(heap) << "MallocSpace::MoreCore " << PrettySize(increment);
135 uint8_t* new_end = original_end + increment;
136 if (increment > 0) {
140 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetName());
143 CHECK_GE(original_end + increment, Begin());
150 size_t size = -increment;
H A Drosalloc_space.cc382 void* ArtRosAllocMoreCore(allocator::RosAlloc* rosalloc, intptr_t increment) { argument
387 return rosalloc_space->MoreCore(increment);

Completed in 141 milliseconds