HomeSort by relevance Sort by last modified time
    Searched refs:right_edge (Results 1 - 2 of 2) sorted by null

  /art/runtime/gc/accounting/
bitmap-inl.h 80 uintptr_t right_edge; local
112 right_edge = 0;
114 right_edge = bitmap_begin_[index_end];
117 right_edge = left_edge;
121 right_edge &= ((static_cast<uintptr_t>(1) << (bit_end % kBitsPerBitmapWord)) - 1);
122 if (right_edge != 0) {
125 const size_t shift = CTZ(right_edge);
127 right_edge ^= (static_cast<uintptr_t>(1)) << shift;
128 } while (right_edge != 0);
space_bitmap-inl.h 101 uintptr_t right_edge; local
135 right_edge = 0;
137 right_edge = bitmap_begin_[index_end];
141 right_edge = left_edge;
145 right_edge &= ((static_cast<uintptr_t>(1) << bit_end) - 1);
146 if (right_edge != 0) {
149 const size_t shift = CTZ(right_edge);
152 right_edge ^= (static_cast<uintptr_t>(1)) << shift;
153 } while (right_edge != 0);

Completed in 32 milliseconds