Home
last modified time | relevance | path

Searched refs:new_top (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/heap/
Dspaces-inl.h271 Address new_top = current_top + filler_size + size_in_bytes; in AllocateRawAligned() local
272 if (new_top > allocation_info_.limit()) return AllocationResult::Retry(); in AllocateRawAligned()
274 allocation_info_.set_top(new_top); in AllocateRawAligned()
292 Address new_top = current_top + size_in_bytes; in AllocateLinearly() local
293 DCHECK_LE(new_top, allocation_info_.limit()); in AllocateLinearly()
294 allocation_info_.set_top(new_top); in AllocateLinearly()
303 Address new_top = current_top + filler_size + *size_in_bytes; in TryAllocateLinearlyAligned() local
304 if (new_top > allocation_info_.limit()) return nullptr; in TryAllocateLinearlyAligned()
306 allocation_info_.set_top(new_top); in TryAllocateLinearlyAligned()
Dspaces.cc2296 Address new_top = to_space_.page_low(); in AllocateChunk() local
2298 allocation_info_.Reset(new_top, to_space_.page_high()); in AllocateChunk()
2385 Address new_top = old_top + aligned_size_in_bytes; in AllocateChunk() local
2387 InlineAllocationStep(new_top, new_top, soon_object, size_in_bytes); in AllocateChunk()
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dgeom.h164 const float new_top = MAX(this->top_, that.top_); in Intersect() local
167 if (new_top >= new_bottom) { in Intersect()
171 return BoundingBox(new_left, new_top, new_right, new_bottom); in Intersect()
/external/pdfium/core/fxcrt/
Dfx_coordinates.cpp344 float new_top = points[0].y; in TransformRect() local
349 new_top = std::max(new_top, points[i].y); in TransformRect()
352 return std::make_tuple(new_left, new_right, new_top, new_bottom); in TransformRect()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DCodePlacementOpt.cpp163 new_top: in EliminateUnconditionalJumpsToTop()
228 goto new_top; in EliminateUnconditionalJumpsToTop()
/external/v8/src/compiler/
Dmemory-optimizer.cc279 Node* new_top = in VisitAllocateRaw() local
283 Node* check = __ UintLessThan(new_top, limit); in VisitAllocateRaw()
287 top_address, __ IntPtrConstant(0), new_top); in VisitAllocateRaw()
/external/freetype/src/truetype/
Dttinterp.h165 FT_Long new_top; /* new top after exec. */ member
Dttinterp.c2734 exc->new_top = 0; in Ins_CLEAR()
4191 exc->new_top += L; in Ins_NPUSHB()
4222 exc->new_top += L; in Ins_NPUSHW()
5357 exc->new_top = exc->args; in Ins_FLIPPT()
5569 exc->new_top = exc->args; in Ins_SHP()
5833 exc->new_top = exc->args; in Ins_SHPIX()
6536 exc->new_top = exc->args; in Ins_ALIGNRP()
6824 exc->new_top = exc->args; in Ins_IP()
7288 exc->new_top = exc->args; in Ins_DELTAP()
7366 exc->new_top = exc->args; in Ins_DELTAC()
[all …]
/external/python/cpython3/Lib/
Dpstats.py281 self.top_level = new_top = set()
283 new_top.add(func_strip_path(func))
/external/python/cpython2/Lib/
Dpstats.py265 self.top_level = new_top = {}
267 new_top[func_strip_path(func)] = None
/external/libcups/cups/
Dppd-cache.c992 new_top, /* New top margin in 2540ths */ in _ppdCacheCreateWithPPD() local
1104 new_top = PWG_FROM_POINTS(ppd_size->length - ppd_size->top); in _ppdCacheCreateWithPPD()
1105 new_imageable = new_length - new_top - new_bottom; in _ppdCacheCreateWithPPD()
1106 new_borderless = new_bottom == 0 && new_top == 0 && in _ppdCacheCreateWithPPD()
1162 new_size->top = new_top; in _ppdCacheCreateWithPPD()
/external/v8/src/
Dcode-stub-assembler.cc1192 Node* new_top = IntPtrAdd(top, adjusted_size.value()); in AllocateRaw() local
1194 Branch(UintPtrGreaterThanOrEqual(new_top, limit), &runtime_call, in AllocateRaw()
1217 new_top); in AllocateRaw()