Lines Matching refs:__f1
1065 static iterator __sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp);
2112 iterator __f1 = begin();
2116 while (__f1 != __e1 && __f2 != __e2)
2118 if (__comp(*__f2, *__f1))
2122 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2, ++__ds)
2130 __m2 = _VSTD::next(__f1);
2131 __link_nodes(__f1.__ptr_, __f, __l);
2132 __f1 = __m2;
2135 ++__f1;
2180 list<_Tp, _Alloc>::__sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp)
2186 return __f1;
2188 if (__comp(*--__e2, *__f1))
2192 __link_nodes(__f1.__ptr_, __f, __f);
2195 return __f1;
2198 iterator __e1 = _VSTD::next(__f1, __n2);
2199 iterator __r = __f1 = __sort(__f1, __e1, __n2, __comp);
2201 if (__comp(*__f2, *__f1))
2204 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2211 __m2 = _VSTD::next(__f1);
2212 __link_nodes(__f1.__ptr_, __f, __l);
2213 __f1 = __m2;
2216 ++__f1;
2217 while (__f1 != __e1 && __f2 != __e2)
2219 if (__comp(*__f2, *__f1))
2222 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2230 __m2 = _VSTD::next(__f1);
2231 __link_nodes(__f1.__ptr_, __f, __l);
2232 __f1 = __m2;
2235 ++__f1;