Home | History | Annotate | Download | only in accounting

Lines Matching refs:right_edge

104   uintptr_t right_edge;
139 right_edge = 0;
141 right_edge = bitmap_begin_[index_end];
145 right_edge = left_edge;
149 right_edge &= ((static_cast<uintptr_t>(1) << bit_end) - 1);
150 if (right_edge != 0) {
152 // Iterate on the bits set in word `right_edge`, from the least to the most significant bit.
154 const size_t shift = CTZ(right_edge);
157 right_edge ^= (static_cast<uintptr_t>(1)) << shift;
158 } while (right_edge != 0);