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

  /art/runtime/gc/space/
region_space-inl.h 97 uint8_t* new_top; local
100 new_top = old_top + num_bytes;
101 if (UNLIKELY(new_top > end_)) {
104 } while (!top_.CompareExchangeWeakRelaxed(old_top, new_top));
108 DCHECK_LE(new_top, end_);
region_space.h 430 void SetTop(uint8_t* new_top) {
431 top_.StoreRelaxed(new_top);
  /external/v8/src/heap/
spaces-inl.h 379 Address new_top = current_top + size_in_bytes; local
380 if (new_top > allocation_info_.limit()) return NULL;
382 allocation_info_.set_top(new_top);
392 Address new_top = current_top + filler_size + size_in_bytes; local
393 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
395 allocation_info_.set_top(new_top);
410 Address new_top = current_top + filler_size + *size_in_bytes; local
411 if (new_top > allocation_info_.limit()) return NULL;
413 allocation_info_.set_top(new_top);
incremental-marking.cc 782 int new_top = current; local
801 array[new_top] = dest;
802 new_top = ((new_top + 1) & mask);
803 DCHECK(new_top != marking_deque->bottom());
810 array[new_top] = obj;
811 new_top = ((new_top + 1) & mask);
812 DCHECK(new_top != marking_deque->bottom());
820 marking_deque->set_top(new_top);
    [all...]
spaces.cc 1702 Address new_top = allocation_info_.top() + size_in_bytes; local
1710 Address new_top = allocation_info_.top() + size_in_bytes; local
1773 Address new_top = old_top + aligned_size_in_bytes; local
    [all...]
spaces.h     [all...]
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.h 165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
ttinterp.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CodePlacementOpt.cpp 163 new_top:
228 goto new_top;
  /external/v8/src/compiler/
memory-optimizer.cc 262 Node* new_top = local
266 Node* check = __ UintLessThan(new_top, limit);
270 top_address, __ IntPtrConstant(0), new_top);
  /external/freetype/src/truetype/
ttinterp.h 165 FT_Long new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_
ttinterp.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pstats.py 273 self.top_level = new_top = {}
275 new_top[func_strip_path(func)] = None
  /external/python/cpython2/Lib/
pstats.py 265 self.top_level = new_top = {}
267 new_top[func_strip_path(func)] = None
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pstats.py 265 self.top_level = new_top = {}
267 new_top[func_strip_path(func)] = None
  /prebuilts/gdb/linux-x86/lib/python2.7/
pstats.py 265 self.top_level = new_top = {}
267 new_top[func_strip_path(func)] = None
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 265 self.top_level = new_top = {}
267 new_top[func_strip_path(func)] = None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 265 self.top_level = new_top = {}
267 new_top[func_strip_path(func)] = None
  /external/libcups/cups/
ppd-cache.c 990 new_top, \/* New top margin in 2540ths *\/ local
    [all...]
  /external/v8/src/
code-stub-assembler.cc 711 Node* new_top = IntPtrAdd(top, size_in_bytes); local
712 Branch(UintPtrGreaterThanOrEqual(new_top, limit), &runtime_call,
735 new_top); local
    [all...]

Completed in 973 milliseconds