Home | History | Annotate | Download | only in processor

Lines Matching defs:iterator

48   MapConstIterator iterator = map_.lower_bound(address);
49 if (iterator == map_.end())
58 const Range *range = iterator.GetValuePtr();
69 *entry_size = iterator.GetKey() - range->base() + 1;
85 // Decrement the iterator to get there, but not if the upper_bound already
89 MapConstIterator iterator = map_.upper_bound(address);
90 if (iterator == map_.begin())
92 --iterator;
94 const Range *range = iterator.GetValuePtr();
99 *entry_size = iterator.GetKey() - range->base() + 1;
114 MapConstIterator iterator = map_.IteratorAtIndex(index);
116 const Range *range = iterator.GetValuePtr();
122 *entry_size = iterator.GetKey() - range->base() + 1;