Searched defs:new_top (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/compiler/
H A Dmemory-optimizer.cc240 Node* new_top = graph()->NewNode( local
247 Node* check = graph()->NewNode(machine()->UintLessThan(), new_top, limit);
258 top_address, jsgraph()->IntPtrConstant(0), new_top, etrue, if_true);
/external/v8/src/heap/
H A Dspaces-inl.h407 Address new_top = current_top + size_in_bytes; local
408 if (new_top > allocation_info_.limit()) return NULL;
410 allocation_info_.set_top(new_top);
420 Address new_top = current_top + filler_size + size_in_bytes; local
421 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
423 allocation_info_.set_top(new_top);
438 Address new_top = current_top + filler_size + *size_in_bytes; local
439 if (new_top > allocation_info_.limit()) return NULL;
441 allocation_info_.set_top(new_top);
H A Dincremental-marking.cc782 int new_top = current; local
802 array[new_top] = dest;
803 new_top = ((new_top + 1) & mask);
804 DCHECK(new_top != marking_deque->bottom());
814 array[new_top] = obj;
815 new_top = ((new_top + 1) & mask);
816 DCHECK(new_top != marking_deque->bottom());
827 marking_deque->set_top(new_top);
[all...]
H A Dspaces.cc1538 Address new_top = allocation_info_.top() + size_in_bytes; local
1539 allocation_info_.set_limit(Min(new_top, high));
1546 Address new_top = allocation_info_.top() + size_in_bytes; local
1547 Address new_limit = new_top + GetNextInlineAllocationStepSize() - 1;
1609 Address new_top = old_top + aligned_size_in_bytes; local
1611 InlineAllocationStep(new_top, new_top, soon_object, size_in_bytes);
1663 void NewSpace::InlineAllocationStep(Address top, Address new_top, argument
1671 top_on_previous_step_ = new_top;
/external/freetype/src/truetype/
H A Dttinterp.h165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
/external/pdfium/third_party/freetype/src/truetype/
H A Dttinterp.h165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
/external/v8/src/
H A Dcode-stub-assembler.cc354 Node* new_top = IntPtrAdd(top, size_in_bytes); local
355 Branch(UintPtrGreaterThanOrEqual(new_top, limit), &runtime_call,
380 new_top); local

Completed in 173 milliseconds