Searched refs:new_top (Results 1 – 8 of 8) sorted by relevance
/third_party/node/deps/v8/src/heap/ |
D | linear-allocation-area.h | 49 V8_INLINE bool DecrementTopIfAdjacent(Address new_top, size_t bytes) { in DecrementTopIfAdjacent() argument 51 if ((new_top + bytes) == top_) { in DecrementTopIfAdjacent() 52 top_ = new_top; in DecrementTopIfAdjacent()
|
D | read-only-spaces.cc | 650 Address new_top = current_top + filler_size + size_in_bytes; in TryAllocateLinearlyAligned() local 651 if (new_top > limit_) return HeapObject(); in TryAllocateLinearlyAligned() 659 top_ = new_top; in TryAllocateLinearlyAligned() 693 Address new_top = current_top + size_in_bytes; in AllocateRawUnaligned() local 694 DCHECK_LE(new_top, limit_); in AllocateRawUnaligned() 695 top_ = new_top; in AllocateRawUnaligned()
|
D | new-spaces.cc | 533 Address new_top = known_top == 0 ? to_space_.page_low() : known_top; in UpdateLinearAllocationArea() local 535 allocation_info_->Reset(new_top, to_space_.page_high()); in UpdateLinearAllocationArea()
|
/third_party/skia/third_party/externals/freetype/src/truetype/ |
D | ttinterp.c | 2762 exc->new_top = 0; in Ins_CLEAR() 4239 exc->new_top += L; in Ins_NPUSHB() 4270 exc->new_top += L; in Ins_NPUSHW() 5405 exc->new_top = exc->args; in Ins_FLIPPT() 5617 exc->new_top = exc->args; in Ins_SHP() 5867 exc->new_top = exc->args; in Ins_SHPIX() 6531 exc->new_top = exc->args; in Ins_ALIGNRP() 6819 exc->new_top = exc->args; in Ins_IP() 7285 exc->new_top = exc->args; in Ins_DELTAP() 7363 exc->new_top = exc->args; in Ins_DELTAC() [all …]
|
D | ttinterp.h | 167 FT_Long new_top; /* new top after exec. */ member
|
/third_party/node/deps/v8/src/compiler/ |
D | memory-lowering.cc | 340 Node* new_top = __ IntAdd(top, size); in ReduceAllocateRaw() local 343 Node* check = __ UintLessThan(new_top, limit); in ReduceAllocateRaw() 352 top_address, __ IntPtrConstant(0), new_top); in ReduceAllocateRaw()
|
/third_party/python/Lib/ |
D | pstats.py | 299 self.top_level = new_top = set() 301 new_top.add(func_strip_path(func))
|
/third_party/node/deps/v8/src/codegen/ |
D | code-stub-assembler.cc | 1270 TNode<IntPtrT> new_top = in AllocateRaw() local 1273 Branch(UintPtrGreaterThanOrEqual(new_top, limit), &runtime_call, in AllocateRaw() 1297 new_top); in AllocateRaw()
|