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

  /art/runtime/gc/collector/
concurrent_copying.h 28 explicit ConcurrentCopying(Heap* heap, bool generational = false,
semi_space.h 60 // If true, use remembered sets in the generational mode.
63 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
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/
heap.cc 426 const bool generational = foreground_collector_type_ == kCollectorTypeGSS; local
427 semi_space_collector_ = new collector::SemiSpace(this, generational,
428 generational ? "generational" : "");
    [all...]

Completed in 1283 milliseconds