Lines Matching refs:__f1
1138 static iterator __sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp);
2235 iterator __f1 = begin();
2239 while (__f1 != __e1 && __f2 != __e2)
2241 if (__comp(*__f2, *__f1))
2245 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2, ++__ds)
2253 __m2 = _VSTD::next(__f1);
2254 __link_nodes(__f1.__ptr_, __f, __l);
2255 __f1 = __m2;
2258 ++__f1;
2302 list<_Tp, _Alloc>::__sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp)
2308 return __f1;
2310 if (__comp(*--__e2, *__f1))
2314 __link_nodes(__f1.__ptr_, __f, __f);
2317 return __f1;
2320 iterator __e1 = _VSTD::next(__f1, __n2);
2321 iterator __r = __f1 = __sort(__f1, __e1, __n2, __comp);
2323 if (__comp(*__f2, *__f1))
2326 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2333 __m2 = _VSTD::next(__f1);
2334 __link_nodes(__f1.__ptr_, __f, __l);
2335 __f1 = __m2;
2338 ++__f1;
2339 while (__f1 != __e1 && __f2 != __e2)
2341 if (__comp(*__f2, *__f1))
2344 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2352 __m2 = _VSTD::next(__f1);
2353 __link_nodes(__f1.__ptr_, __f, __l);
2354 __f1 = __m2;
2357 ++__f1;