Searched refs:__max (Results 1 – 14 of 14) sorted by relevance
/freebsd/lib/libc/locale/ |
H A D | nextwctype.c | 68 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 D | toupper.c | 61 if (re->__min <= c && c <= re->__max) in ___toupper_l() 65 else if (c > re->__max) { in ___toupper_l()
|
H A D | tolower.c | 61 if (re->__min <= c && c <= re->__max) in ___tolower_l() 63 else if (c > re->__max) { in ___tolower_l()
|
H A D | runetype.c | 61 if (re->__min <= c && c <= re->__max) { in ___runetype_l() 66 } else if (c > re->__max) { in ___runetype_l()
|
H A D | rune.c | 192 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 D | aligned_storage.h | 79 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 D | this_thread.h | 40 …_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 D | ranges_max.h | 39 namespace __max { 93 inline constexpr auto max = __max::__fn{};
|
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/ |
H A D | bsd_locale_fallbacks.h | 70 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 D | runetype.h | 49 __rune_t __max; /* Last rune (inclusive) of the range */ member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | int_math.h | 96 #define crt_fmaxl(x, y) __max((x), (y))
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | limits | 200 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 D | regex | 1516 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 D | new | 183 enum align_val_t { __zero = 0, __max = (size_t)-1 };
|