Home
last modified time | relevance | path

Searched refs:__max (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/lib/libc/locale/
H A Dnextwctype.c68 if (re->__min <= wc && wc <= re->__max) in nextwctype_l()
70 else if (wc > re->__max) { in nextwctype_l()
79 if (re->__min <= wc && wc <= re->__max) { in nextwctype_l()
81 for (; wc <= re->__max; wc++) in nextwctype_l()
90 for (; wc <= re->__max; wc++) in nextwctype_l()
H A Dtoupper.c61 if (re->__min <= c && c <= re->__max) in ___toupper_l()
65 else if (c > re->__max) { in ___toupper_l()
H A Dtolower.c61 if (re->__min <= c && c <= re->__max) in ___tolower_l()
63 else if (c > re->__max) { in ___tolower_l()
H A Drunetype.c61 if (re->__min <= c && c <= re->__max) { in ___runetype_l()
66 } else if (c > re->__max) { in ___runetype_l()
H A Drune.c195 rr[x].__max = frr[x].max; in _Read_RuneMagi()
198 int len = rr[x].__max - rr[x].__min + 1; in _Read_RuneMagi()
213 rr[x].__max = frr[x].max; in _Read_RuneMagi()
221 rr[x].__max = frr[x].max; in _Read_RuneMagi()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__type_traits/
H A Daligned_storage.h79 static const size_t __max = _A1 < _A2 ? _A2 : _A1;
82 static const size_t value = _Len < __max ? __min : __max;
/freebsd-14.2/contrib/llvm-project/libcxx/include/__thread/
H A Dthis_thread.h40 …_LIBCPP_CONSTEXPR chrono::duration<long double> __max = chrono::duration<long double>(9223372036.0… in sleep_for() local
42 if (__d < __max) { in sleep_for()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_max.h39 namespace __max {
93 inline constexpr auto max = __max::__fn{};
/freebsd-14.2/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/
H A Dbsd_locale_fallbacks.h70 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_mbtowc_l(wchar_t* __pwc, const char* __pmb, size_t __max,… in __libcpp_mbtowc_l() argument
72 return mbtowc(__pwc, __pmb, __max); in __libcpp_mbtowc_l()
/freebsd-14.2/include/
H A Drunetype.h51 __rune_t __max; /* Last rune (inclusive) of the range */ member
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_math.h91 #define crt_fmaxl(x, y) __max((x), (y))
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dlimits201 static _LIBCPP_CONSTEXPR const type __max = is_signed ? type(type(~0) ^ __min) : type(~0);
203 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type max() _NOEXCEPT { return __max; }
252 static _LIBCPP_CONSTEXPR const type __max = true;
254 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type max() _NOEXCEPT { return __max; }
H A Dregex1518 size_t __max = numeric_limits<size_t>::max())
1521 __max_(__max),
2555 size_t __max,
3168 int __max = -1;
3169 __first = __parse_DUP_COUNT(__first, __last, __max);
3173 if (__max == -1)
3176 if (__max < __min)
3252 int __max = -1;
3253 __temp = __parse_DUP_COUNT(__first, __last, __max);
3260 if (__max < __min)
[all …]
H A Dnew184 enum align_val_t { __zero = 0, __max = (size_t)-1 };