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

/art/runtime/gc/accounting/
H A Dspace_bitmap.cc187 uintptr_t garbage = live[i].LoadRelaxed() & ~mark[i].LoadRelaxed(); local
188 if (UNLIKELY(garbage != 0)) {
191 const size_t shift = CTZ(garbage);
192 garbage ^= (static_cast<uintptr_t>(1)) << shift;
194 } while (garbage != 0);

Completed in 96 milliseconds