Home
last modified time | relevance | path

Searched refs:__n1 (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_ends_with.h72 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 Dstring1604 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 Dstring_view464 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 Dalgorithm_impl.h
H A Dunseq_backend_simd.h
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dduration.h170 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;