Lines Matching refs:__f1
1131 static iterator __sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp);
2219 iterator __f1 = begin();
2223 while (__f1 != __e1 && __f2 != __e2)
2225 if (__comp(*__f2, *__f1))
2229 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2, ++__ds)
2237 __m2 = _VSTD::next(__f1);
2238 __link_nodes(__f1.__ptr_, __f, __l);
2239 __f1 = __m2;
2242 ++__f1;
2286 list<_Tp, _Alloc>::__sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp)
2292 return __f1;
2294 if (__comp(*--__e2, *__f1))
2298 __link_nodes(__f1.__ptr_, __f, __f);
2301 return __f1;
2304 iterator __e1 = _VSTD::next(__f1, __n2);
2305 iterator __r = __f1 = __sort(__f1, __e1, __n2, __comp);
2307 if (__comp(*__f2, *__f1))
2310 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2317 __m2 = _VSTD::next(__f1);
2318 __link_nodes(__f1.__ptr_, __f, __l);
2319 __f1 = __m2;
2322 ++__f1;
2323 while (__f1 != __e1 && __f2 != __e2)
2325 if (__comp(*__f2, *__f1))
2328 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2336 __m2 = _VSTD::next(__f1);
2337 __link_nodes(__f1.__ptr_, __f, __l);
2338 __f1 = __m2;
2341 ++__f1;