Searched refs:itr (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/system/ulib/bitmap/
H A Drle-bitmap.cpp179 auto itr = ends_after; local
182 if (elem.bitoff >= itr->bitoff) {
186 elem.bitlen += elem.bitoff - itr->bitoff;
187 num_bits_ += elem.bitoff - itr->bitoff;
188 elem.bitoff = itr->bitoff;
193 while (itr != elems_.end()) {
194 if (itr->bitoff > max) {
198 max = fbl::max(max, itr->bitoff + itr->bitlen);
199 num_bits_ += max - elem.bitoff - itr
219 auto itr = elems_.begin(); local
[all...]
/fuchsia/zircon/kernel/vm/
H A Dvm_address_region.cpp363 auto itr = --subregions_.upper_bound(addr); local
364 if (!itr.IsValid() || itr->base() > addr || addr > itr->base() + itr->size() - 1) {
368 return itr.CopyPointer();
544 for (auto itr = subregions_.begin(), end = subregions_.end(); itr != end;) {
545 DEBUG_ASSERT(itr->IsAliveLocked());
546 auto curr = itr
652 auto itr = --subregions_.upper_bound(base); local
[all...]
/fuchsia/zircon/kernel/vm/include/vm/
H A Dvm_page_list.h154 for (auto itr = start; itr != end; ++itr) {
155 auto& pl = *itr;
178 for (auto itr = start; itr != end; ++itr) {
179 auto& pl = *itr;

Completed in 20 milliseconds