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 (!top_.CompareExchangeWeakRelaxed(old_top, new_top));
132 DCHECK_LE(new_top, end_);
  /external/v8/src/compiler/
memory-optimizer.cc 273 Node* new_top = graph()->NewNode( local
280 Node* check = graph()->NewNode(machine()->UintLessThan(), new_top, limit);
291 top_address, jsgraph()->IntPtrConstant(0), new_top, etrue, if_true);
  /external/v8/src/heap/
spaces-inl.h 384 Address new_top = current_top + size_in_bytes; local
385 if (new_top > allocation_info_.limit()) return NULL;
387 allocation_info_.set_top(new_top);
397 Address new_top = current_top + filler_size + size_in_bytes; local
398 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
400 allocation_info_.set_top(new_top);
415 Address new_top = current_top + filler_size + *size_in_bytes; local
416 if (new_top > allocation_info_.limit()) return NULL;
418 allocation_info_.set_top(new_top);
incremental-marking.cc 791 int new_top = current; local
811 array[new_top] = dest;
812 new_top = ((new_top + 1) & mask);
813 DCHECK(new_top != marking_deque->bottom());
823 array[new_top] = obj;
824 new_top = ((new_top + 1) & mask);
825 DCHECK(new_top != marking_deque->bottom());
836 marking_deque->set_top(new_top);
    [all...]
spaces.cc 1691 Address new_top = allocation_info_.top() + size_in_bytes; local
1699 Address new_top = allocation_info_.top() + size_in_bytes; local
1762 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/pdfium/third_party/freetype/src/truetype/
ttinterp.h 165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
  /external/libcups/cups/
ppd-cache.c 990 new_top, \/* New top margin in 2540ths *\/ local
    [all...]
  /external/v8/src/
code-stub-assembler.cc 735 Node* new_top = IntPtrAdd(top, size_in_bytes); local
736 Branch(UintPtrGreaterThanOrEqual(new_top, limit), &runtime_call,
759 new_top); local
    [all...]

Completed in 277 milliseconds