HomeSort by relevance Sort by last modified time
    Searched refs:Sweep (Results 1 - 25 of 29) sorted by null

1 2

  /art/runtime/gc/collector/
sticky_mark_sweep.h 52 void Sweep(bool swap_bitmaps)
sticky_mark_sweep.cc 76 void StickyMarkSweep::Sweep(bool swap_bitmaps ATTRIBUTE_UNUSED) {
mark_compact.cc 242 Sweep(false);
244 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
531 void MarkCompact::Sweep(bool swap_bitmaps) {
542 RecordFree(alloc_space->Sweep(swap_bitmaps));
552 RecordFreeLOS(los->Sweep(swap_bitmaps));
mark_compact.h 108 void Sweep(bool swap_bitmaps) REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_);
143 // Returns true if we should sweep the space.
semi_space.cc 429 Sweep(false);
431 // optimization that enables us to not clear live bits inside of the sweep. Only swaps unbound
652 void SemiSpace::Sweep(bool swap_bitmaps) {
663 RecordFree(alloc_space->Sweep(swap_bitmaps));
676 RecordFreeLOS(los->Sweep(swap_bitmaps));
    [all...]
semi_space.h 138 virtual void Sweep(bool swap_bitmaps)
183 // Returns true if we should sweep the space.
mark_sweep.h 148 // all allocation spaces. Partial and sticky GCs want to just sweep a subset of the heap.
149 virtual void Sweep(bool swap_bitmaps)
156 // Sweep only pointers within an array. WARNING: Trashes objects.
concurrent_copying.h 212 void Sweep(bool swap_bitmaps)
mark_sweep.cc 96 (is_concurrent ? "concurrent mark sweep": "mark sweep")),
101 mark_stack_lock_("mark sweep mark stack lock", kMarkSweepMarkStackLock),
106 "mark sweep sweep array free buffer", nullptr,
109 CHECK(mem_map != nullptr) << "Couldn't allocate sweep array free buffer: " << error_msg;
167 // Sweeping always done concurrently, even for non concurrent mark sweep.
207 // weak before we sweep them. Since this new system weak may not be marked, the GC may
208 // incorrectly sweep it. This also fixes a race where interning may attempt to return a strong
330 Sweep(false)
    [all...]
concurrent_copying.cc     [all...]
  /art/runtime/gc/
system_weak.h 36 virtual void Sweep(IsMarkedVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_) = 0;
system_weak_test.cc 72 void Sweep(IsMarkedVisitor* visitor) OVERRIDE
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Sweep.java 25 public class Sweep extends GraphicsActivity {
76 android.util.Log.d("skia", "sweep ms = " + (now/20.));
  /art/runtime/gc/space/
image_space.h 102 void Sweep(bool /* swap_bitmaps */, size_t* /* freed_objects */, size_t* /* freed_bytes */) {
space.cc 90 collector::ObjectBytePair ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) {
large_object_space.h 77 collector::ObjectBytePair Sweep(bool swap_bitmaps);
space.h 439 collector::ObjectBytePair Sweep(bool swap_bitmaps);
large_object_space.cc 591 collector::ObjectBytePair LargeObjectSpace::Sweep(bool swap_bitmaps) {
  /art/runtime/openjdkjvmti/
jvmti_weak_table.h 100 // Sweep the container. DO NOT CALL MANUALLY.
101 ALWAYS_INLINE void Sweep(art::IsMarkedVisitor* visitor)
126 // Should HandleNullSweep be called when Sweep detects the release of an object?
221 // To avoid repeatedly scanning the whole table, remember if we did that since the last sweep.
jvmti_weak_table-inl.h 178 void JvmtiWeakTable<T>::Sweep(art::IsMarkedVisitor* visitor) {
  /prebuilts/go/darwin-x86/src/internal/trace/
goroutines.go 115 // Sweep can happen during GC on system goroutine.
  /prebuilts/go/linux-x86/src/internal/trace/
goroutines.go 115 // Sweep can happen during GC on system goroutine.
  /prebuilts/go/darwin-x86/src/runtime/
mgcsweep.go 14 var sweep sweepdata var
16 // State of background sweep.
27 // "sweep finished" message was printed.
39 // sweep any unswept spans. If this is a concurrent GC, there
40 // shouldn't be any spans left to sweep, so this should finish
41 // instantly. If GC was forced before the concurrent sweep
42 // finished, there may be spans to sweep.
44 sweep.npausesweep++
51 sweep.g = getg()
53 lock(&sweep.lock
167 func (s *mspan) sweep(preserve bool) bool { func
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mgcsweep.go 14 var sweep sweepdata var
16 // State of background sweep.
27 // "sweep finished" message was printed.
39 // sweep any unswept spans. If this is a concurrent GC, there
40 // shouldn't be any spans left to sweep, so this should finish
41 // instantly. If GC was forced before the concurrent sweep
42 // finished, there may be spans to sweep.
44 sweep.npausesweep++
51 sweep.g = getg()
53 lock(&sweep.lock
167 func (s *mspan) sweep(preserve bool) bool { func
    [all...]
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate_test.go 668 // Sweep over the threshold at which an error is returned.

Completed in 405 milliseconds

1 2