Home
last modified time | relevance | path

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

/freebsd/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.c192 rr[x].__max = frr[x].max; in _Read_RuneMagi()
195 int len = rr[x].__max - rr[x].__min + 1; in _Read_RuneMagi()
210 rr[x].__max = frr[x].max; in _Read_RuneMagi()
218 rr[x].__max = frr[x].max; in _Read_RuneMagi()
/freebsd/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/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/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_max.h39 namespace __max {
93 inline constexpr auto max = __max::__fn{};
/freebsd/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, locale_t __l) { in __libcpp_mbsnrtowcs_l()
72 return mbtowc(__pwc, __pmb, __max); in __libcpp_mbsnrtowcs_l()
85 __libcpp_mbtowc_l(wchar_t * __pwc,const char * __pmb,size_t __max,locale_t __l) __libcpp_mbtowc_l() argument
/freebsd/include/
H A Drunetype.h49 __rune_t __max; /* Last rune (inclusive) of the range */ member
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_math.h96 #define crt_fmaxl(x, y) __max((x), (y))
/freebsd/contrib/llvm-project/libcxx/include/
H A Dlimits200 static _LIBCPP_CONSTEXPR const type __max = is_signed ? type(type(~0) ^ __min) : type(~0);
202 …CPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type max() _NOEXCEPT { return __max; }
251 static _LIBCPP_CONSTEXPR const type __max = true;
253 …CPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type max() _NOEXCEPT { return __max; }
H A Dregex1516 size_t __max = numeric_limits<size_t>::max())
1519 __max_(__max),
2553 size_t __max,
3166 int __max = -1;
3167 __first = __parse_DUP_COUNT(__first, __last, __max);
3171 if (__max == -1)
3174 if (__max < __min)
3176 __push_loop(__min, __max, __s, __mexp_begin, __mexp_end, true);
3250 int __max = -1;
3251 __temp = __parse_DUP_COUNT(__first, __last, __max);
[all …]
H A Dnew183 enum align_val_t { __zero = 0, __max = (size_t)-1 };