Searched defs:garbage (Results 1 - 1 of 1) sorted by relevance

/art/runtime/gc/accounting/
H A Dspace_bitmap.cc124 // object pointers that correspond to garbage objects. Call
154 word garbage = live[i] & ~mark[i]; local
155 if (UNLIKELY(garbage != 0)) {
158 const size_t shift = CLZ(garbage);
159 garbage ^= static_cast<size_t>(kWordHighBitMask) >> shift;
161 } while (garbage != 0);

Completed in 60 milliseconds