HomeSort by relevance Sort by last modified time
    Searched full:generational (Results 1 - 25 of 26) sorted by null

1 2

  /art/runtime/gc/collector/
semi_space.h 59 // If true, use remembered sets in the generational mode.
62 explicit SemiSpace(Heap* heap, bool generational = false, const std::string& name_prefix = "");
224 // When true, the generational mode (promotion and the bump pointer
229 // Used for the generational mode. the end/top of the bump
233 // Used for the generational mode. During a collection, keeps track
238 // Used for the generational mode. Keeps track of how many bytes of
243 // Used for the generational mode. Keeps track of how many bytes of
247 // Used for generational mode. When true, we only collect the from_space_.
267 // Used for the generational mode. The default interval of the whole
concurrent_copying.h 28 explicit ConcurrentCopying(Heap* heap, bool generational = false,
semi_space.cc 88 SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix)
93 generational_(generational),
98 collect_from_space_only_(generational),
199 // If non-generational, always clear soft references.
200 // If generational, clear soft references if a whole heap collection.
    [all...]
  /art/runtime/gc/
collector_type.h 35 // A generational variant of kCollectorTypeSS.
heap.cc 406 const bool generational = foreground_collector_type_ == kCollectorTypeGSS; local
407 semi_space_collector_ = new collector::SemiSpace(this, generational,
408 generational ? "generational" : "");
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lgc.h 54 ** ones) must be kept. During a non-generational collection, the sweep
57 ** all objects are white again. During a generational collection, the
65 ** Outside the collector, the state in generational mode is kept in
93 #define OLDBIT 6 /* object is old (only in generational mode) */
lgc.c 705 ** In non-generational mode, change all non-dead objects back to white,
707 ** In generational mode, keep black objects black, and also mark them as
717 if (isgenerational(g)) { /* generational mode? */
948 if (mode == KGC_GEN) { /* change to generational mode */
    [all...]
lstate.h 56 #define KGC_GEN 2 /* generational collection */
lbaselib.c 163 "setmajorinc", "isrunning", "generational", "incremental", NULL};
lapi.c 1050 if (g->gckind == KGC_GEN) { /* generational mode? */
1084 case LUA_GCGEN: { /* change collector to generational mode */
  /external/chromium_org/tools/ipc_fuzzer/mutate/
ipc_fuzzer_gen.py 6 """Generational ClusterFuzz fuzzer. It generates IPC messages using
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILDevice.h 72 // Get the generational name of this specific device.
  /external/chromium_org/v8/src/
compilation-cache.h 11 // The compilation cache consists of several generational sub-caches which uses
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILDevice.h 72 // Get the generational name of this specific device.
  /external/clang/include/clang/AST/
Redeclarable.h 69 // Allocate the generational 'most recent' cache now, if needed.
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingQueue.java 77 * - cause cross-generational linking of old Nodes to new Nodes if
78 * a Node was tenured while live, which generational GCs have a
ConcurrentLinkedQueue.java 108 * - cause cross-generational linking of old Nodes to new Nodes if
109 * a Node was tenured while live, which generational GCs have a
LinkedBlockingDeque.java 57 * - cause cross-generational linking of old Nodes to new Nodes if
58 * a Node was tenured while live, which generational GCs have a
    [all...]
ConcurrentLinkedDeque.java 159 * to improve performance with generational GCs.
    [all...]
  /external/llvm/docs/
GarbageCollection.rst 34 use of compacting and generational GC algorithms) and it can occasionally suffer
60 * generational collectors
94 used to optimize incremental scans in generational collectors.
429 Many important algorithms require write barriers, including generational and
628 (Including generational collectors.) Incremental collectors generally have all
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/doc/
readme.html 345 <LI> generational mode for garbage collection (experimental)
manual.html 834 from incremental to <em>generational</em>.
835 A <em>generational collector</em> assumes that most objects die young,
840 from time to time the generational collector performs a full collection.
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
RotarySelector.java 598 mVelocityTracker.recycle(); // wishin' we had generational GC
  /frameworks/base/docs/html/training/articles/
perf-tips.jd 57 <p>Object creation is never free. A generational garbage collector with per-thread allocation
  /dalvik/docs/
debugmon.html 527 or between the "mark" and "sweep" phases of the GC. For a fancy generational

Completed in 852 milliseconds

1 2