Searched refs:__len2 (Results 1 – 4 of 4) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _algobase.h | 592 const size_t __len2 = __last2 - __first2; in lexicographical_compare() local 596 const int __result = memcmp(__first1, __first2, (min) (__len1, __len2)); in lexicographical_compare() 597 return __result != 0 ? (__result < 0) : (__len1 < __len2); in lexicographical_compare() 626 const ptrdiff_t __len2 = __last2 - __first2; in __lexicographical_compare_3way() local 627 const int __result = memcmp(__first1, __first2, (min) (__len1, __len2)); in __lexicographical_compare_3way() 629 : (__len1 == __len2 ? 0 : (__len1 < __len2 ? -1 : 1)); in __lexicographical_compare_3way()
|
D | _algo.c | 45 _Distance __len1, _Distance __len2, 1096 _Distance __len1, _Distance __len2, in __rotate_adaptive() argument 1099 if (__len1 > __len2 && __len2 <= __buffer_size) { in __rotate_adaptive() 1118 _Distance __len1, _Distance __len2, in __merge_adaptive() argument 1121 if (__len1 <= __len2 && __len1 <= __buffer_size) { in __merge_adaptive() 1125 else if (__len2 <= __buffer_size) { in __merge_adaptive() 1135 if (__len1 > __len2) { in __merge_adaptive() 1142 __len22 = __len2 / 2; in __merge_adaptive() 1153 __len2 - __len22, __buffer, __buffer_size, __comp); in __merge_adaptive() 1466 _Distance __len1, _Distance __len2, in __merge_without_buffer() argument [all …]
|
D | _string.h | 831 const size_type __len2 = (min) (__n2, __size2 - __pos2); in replace() local 832 if (__len2 > max_size() - (__size1 - __len1)) in replace() 835 __s._M_Start() + __pos2, __s._M_Start() + __pos2 + __len2, &__s == this); in replace()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | algorithm | 984 typename iterator_traits<_RandomAccessIterator2>::difference_type __len2 = __last2 - __first2; 985 if (__len2 == 0) 988 if (__len1 < __len2) 990 …const _RandomAccessIterator1 __s = __first1 + (__len2 - 1); // End of pattern match can't go befo… 1451 _D2 __len2 = __last2 - __first2; 1452 if (__len2 == 0) 1455 if (__len1 < __len2) 1457 …const _RandomAccessIterator1 __s = __last1 - (__len2 - 1); // Start of pattern match can't go bey… 3311 _Distance __len2 = __len / 2; // __len2 >= 2 3312 _VSTD::advance(__m, __len2); [all …]
|