HomeSort by relevance Sort by last modified time
    Searched defs:new_top (Results 1 - 9 of 9) sorted by null

  /art/runtime/gc/space/
region_space-inl.h 121 uint8_t* new_top; local
124 new_top = old_top + num_bytes;
125 if (UNLIKELY(new_top > end_)) {
128 } while (!atomic_top->CompareExchangeWeakSequentiallyConsistent(old_top, new_top));
132 DCHECK_LE(new_top, end_);
  /external/v8/src/compiler/
memory-optimizer.cc 240 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/
spaces-inl.h 407 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);
incremental-marking.cc 782 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...]
spaces.cc 1538 Address new_top = allocation_info_.top() + size_in_bytes; local
1546 Address new_top = allocation_info_.top() + size_in_bytes; local
1609 Address new_top = old_top + aligned_size_in_bytes; local
    [all...]
  /external/freetype/src/truetype/
ttinterp.h 165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/truetype/
ttinterp.h 165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.h 165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
  /external/v8/src/
code-stub-assembler.cc 354 Node* new_top = IntPtrAdd(top, size_in_bytes); local
355 Branch(UintPtrGreaterThanOrEqual(new_top, limit), &runtime_call,
380 new_top); local
    [all...]

Completed in 315 milliseconds