Home
last modified time | relevance | path

Searched refs:__f1 (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/include/
Dforward_list754 __merge(__node_pointer __f1, __node_pointer __f2, _Compare& __comp);
1466 forward_list<_Tp, _Alloc>::__merge(__node_pointer __f1, __node_pointer __f2,
1469 if (__f1 == nullptr)
1472 return __f1;
1474 if (__comp(__f2->__value_, __f1->__value_))
1478 __comp(__t->__next_->__value_, __f1->__value_))
1482 __t->__next_ = __f1;
1485 __r = __f1;
1486 __node_pointer __p = __f1;
1487 __f1 = __f1->__next_;
[all …]
Dlist1020 static iterator __sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp);
2034 iterator __f1 = begin();
2038 while (__f1 != __e1 && __f2 != __e2)
2040 if (__comp(*__f2, *__f1))
2044 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2, ++__ds)
2052 __m2 = _VSTD::next(__f1);
2053 __link_nodes(*__f1.__ptr_, __f, __l);
2054 __f1 = __m2;
2057 ++__f1;
2101 list<_Tp, _Alloc>::__sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp)
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_string.h673 static int _STLP_CALL _M_compare(const _CharT* __f1, const _CharT* __l1, in _M_compare() argument
675 { return _Base::_M_compare(__f1, __l1, __f2, __l2); } in _M_compare()
676 static int _STLP_CALL _M_compare(const_iterator __f1, const_iterator __l1, in _M_compare() argument
678 { return _Base::_M_compare(__f1._M_iterator, __l1._M_iterator, __f2, __l2); } in _M_compare()
679 static int _STLP_CALL _M_compare(const _CharT* __f1, const _CharT* __l1, in _M_compare() argument
681 { return _Base::_M_compare(__f1, __l1, __f2._M_iterator, __l2._M_iterator); } in _M_compare()
682 static int _STLP_CALL _M_compare(const_iterator __f1, const_iterator __l1, in _M_compare() argument
684 …{ return _Base::_M_compare(__f1._M_iterator, __l1._M_iterator, __f2._M_iterator, __l2._M_iterator)… in _M_compare()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_string.c209 const _CharT* __f1 = __first; in _M_append() local
210 ++__f1; in _M_append()
211 _STLP_PRIV __ucopy(__f1, __last, this->_M_finish + 1); in _M_append()
D_string.h1071 static int _STLP_CALL _M_compare(const _CharT* __f1, const _CharT* __l1, in _M_compare() argument
1073 const ptrdiff_t __n1 = __l1 - __f1; in _M_compare()
1075 const int cmp = _Traits::compare(__f1, __f2, (min) (__n1, __n2)); in _M_compare()