Home | History | Annotate | Download | only in bits

Lines Matching refs:__lookAhead

423       _RandomAccessIter __lookAhead = __first + __skipOffset;
428 // __lookAhead here is always pointing to the last element of next
430 while (!(*__lookAhead == __val)) // the skip loop...
434 __lookAhead += __pattSize;
438 for (_RandomAccessIter __backTrack = __lookAhead - 1;
442 return (__lookAhead - __skipOffset); // Success
446 __lookAhead += __remainder;
516 _RandomAccessIter __lookAhead = __first + __skipOffset;
521 // __lookAhead here is always pointing to the last element of next
523 while (!bool(__binary_pred(*__lookAhead, __val))) // the skip loop...
527 __lookAhead += __pattSize;
531 for (_RandomAccessIter __backTrack = __lookAhead - 1;
535 return (__lookAhead - __skipOffset); // Success
539 __lookAhead += __remainder;