Home
last modified time | relevance | path

Searched refs:garbage (Results 1 – 4 of 4) sorted by relevance

/art/runtime/gc/accounting/
Dspace_bitmap.cc166 uintptr_t garbage = live[i] & ~mark[i]; in SweepWalk() local
167 if (UNLIKELY(garbage != 0)) { in SweepWalk()
170 const size_t shift = CTZ(garbage); in SweepWalk()
171 garbage ^= (static_cast<uintptr_t>(1)) << shift; in SweepWalk()
173 } while (garbage != 0); in SweepWalk()
/art/test/074-gc-thrash/
Dinfo.txt1 This thrashes the memory allocator and garbage collector for a brief period.
/art/test/109-suspend-check/
Dinfo.txt1 To support garbage collection, debugging and profiling the VM must be able to send all threads
/art/test/109-suspend-check/src/
DMain.java210 byte[] garbage = new byte[100000]; in run()