Lines Matching refs:current
50 current: PhysPageFrame, field
58 current: start, in new()
68 if unlikely(self.current == self.end) { in next()
71 let current = self.current.next(); in next() localVariable
72 return Some(current); in next()
108 current: start, in iter_range()
123 current: VirtPageFrame, field
132 current: start, in new()
142 if unlikely(self.current == self.end) { in next()
145 let current: VirtPageFrame = self.current; in next() localVariable
146 self.current = self.current.next_by(1); in next()
147 return Some(current); in next()