Searched refs:__n1 (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | ranges_ends_with.h | 72 auto __n1 = ranges::distance(__first1, __last1); in __ends_with_fn_impl() local 76 if (__n2 > __n1) in __ends_with_fn_impl() 87 __n1 - __n2); in __ends_with_fn_impl() 158 auto __n1 = ranges::size(__range1); local 162 if (__n2 > __n1) 164 auto __offset = __n1 - __n2;
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | string | 1604 replace(size_type __pos1, size_type __n1, const basic_string& __str) { 1605 return replace(__pos1, __n1, __str.data(), __str.size()); 1610 replace(size_type __pos1, size_type __n1, const _Tp& __t) { 1612 return replace(__pos1, __n1, __sv.data(), __sv.size()); 1616 …replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type _… 1623 …replace(size_type __pos1, size_type __n1, const _Tp& __t, size_type __pos2, size_type __n2 = npos); 1626 replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2); 1627 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& replace(size_type __pos, size_type __n1, const value_t… 1628 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& replace(size_type __pos, size_type __n1, size_type __n… 1804 compare(size_type __pos1, size_type __n1, const _Tp& __t) const; [all …]
|
H A D | string_view | 464 compare(size_type __pos1, size_type __n1, basic_string_view __sv) const { 465 return substr(__pos1, __n1).compare(__sv); 469 …compare(size_type __pos1, size_type __n1, basic_string_view __sv, size_type __pos2, size_type __n2… 470 return substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2)); 478 compare(size_type __pos1, size_type __n1, const _CharT* __s) const { 479 return substr(__pos1, __n1).compare(basic_string_view(__s)); 483 compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const { 484 return substr(__pos1, __n1).compare(basic_string_view(__s, __n2));
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | algorithm_impl.h |
|
H A D | unseq_backend_simd.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | duration.h | 170 static const intmax_t __n1 = _R1::num / __gcd_n1_n2; 188 static const bool value = (__n1 <= max / __d2) && (__n2 <= max / __d1); 189 typedef ratio<__mul<__n1, __d2, !value>::value, __mul<__n2, __d1, !value>::value> type;
|