Lines Matching refs:fPos
240 SkDeque::Iter::Iter() : fCurBlock(nullptr), fPos(nullptr), fElemSize(0) {}
247 // pointed to by fPos and then updates fPos to point to the next one.
249 char* pos = fPos;
260 fPos = next;
265 // Like next, prev actually returns the current element pointed to by fPos and
266 // then makes fPos point to the previous element.
268 char* pos = fPos;
279 fPos = prev;
285 // of the doubly linked list until a non-empty one is found. The fPos
287 // there are no elements in the deque both fCurBlock and fPos will come
298 fPos = fCurBlock ? fCurBlock->fBegin : nullptr;
305 fPos = fCurBlock ? fCurBlock->fEnd - fElemSize : nullptr;