Searched defs:increment (Results 1 - 6 of 6) sorted by relevance

/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.cc184 size_t increment = std::min(std::max(2 * MB, req_byte_size - last_free_page_run_size), local
186 DCHECK_EQ(increment % kPageSize, static_cast<size_t>(0));
187 size_t new_footprint = footprint_ + increment;
194 ArtRosAllocMoreCore(this, increment);
198 last_free_page_run->SetByteSize(this, last_free_page_run_size + increment);
207 new_free_page_run->SetByteSize(this, increment);
217 DCHECK_LE(footprint_ + increment, capacity_);
/art/test/566-polymorphic-inlining/src/
H A DMain.java119 m.increment();
126 public void increment() { method in class:Main
/art/runtime/gc/space/
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;
/art/compiler/optimizing/
H A Dbounds_check_elimination_test.cc357 // for (int i=initial; i<array.length; i+=increment) { array[i] = 10; }
361 int increment,
371 HInstruction* constant_increment = graph->GetIntConstant(increment);
472 // for (int i=array.length; i>0; i+=increment) { array[i-1] = 10; }
476 int increment = -1,
486 HInstruction* constant_increment = graph->GetIntConstant(increment);
582 // for (int i=0; i<10; i+=increment) { array[i] = 10; }
586 int increment,
594 HInstruction* constant_increment = graph->GetIntConstant(increment);
358 BuildSSAGraph1(HGraph* graph, ArenaAllocator* allocator, int initial, int increment, IfCondition cond = kCondGE) argument
583 BuildSSAGraph3(HGraph* graph, ArenaAllocator* allocator, int initial, int increment, IfCondition cond) argument
H A Dbounds_check_elimination.cc386 int32_t increment,
393 increment_(increment),
627 // Make sure the comparison is in the loop header so each increment is
648 // increment/decrement.
914 int32_t increment; variable
915 if (ValueBound::IsAddOrSubAConstant(instruction, &left, &increment)) {
919 if (increment == 0) {
936 bound = increment > 0 ? initial_range->GetLower() :
939 bound = increment > 0 ? ValueBound::Min() : ValueBound::Max();
946 increment,
383 MonotonicValueRange(ArenaAllocator* allocator, HPhi* induction_variable, HInstruction* initial, int32_t increment, ValueBound bound) argument
[all...]

Completed in 110 milliseconds