Searched refs:garbage (Results 1 – 4 of 4) sorted by relevance
166 uintptr_t garbage = live[i] & ~mark[i]; in SweepWalk() local167 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()
1 This thrashes the memory allocator and garbage collector for a brief period.
1 To support garbage collection, debugging and profiling the VM must be able to send all threads
210 byte[] garbage = new byte[100000]; in run()