Searched refs:left_edge (Results 1 - 2 of 2) sorted by relevance

/art/runtime/gc/accounting/
H A Dbitmap-inl.h75 uintptr_t left_edge = bitmap_begin_[index_start]; local
77 left_edge &= ~((static_cast<uintptr_t>(1) << (bit_start % kBitsPerBitmapWord)) - 1);
79 // Right edge. Either unique, or left_edge.
86 if (left_edge != 0) {
89 const size_t shift = CTZ(left_edge);
91 left_edge ^= static_cast<uintptr_t>(1) << shift;
92 } while (left_edge != 0);
117 right_edge = left_edge;
H A Dspace_bitmap-inl.h96 uintptr_t left_edge = bitmap_begin_[index_start]; local
98 left_edge &= ~((static_cast<uintptr_t>(1) << bit_start) - 1);
100 // Right edge. Either unique, or left_edge.
107 if (left_edge != 0) {
110 const size_t shift = CTZ(left_edge);
113 left_edge ^= (static_cast<uintptr_t>(1)) << shift;
114 } while (left_edge != 0);
141 right_edge = left_edge;

Completed in 194 milliseconds