| /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 | 58 static const size_t __max = _A1 < _A2 ? _A2 : _A1; 61 static const size_t value = _Len < __max ? __min : __max;
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__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 | 43 …_LIBCPP_CONSTEXPR chrono::duration<long double> __max = chrono::duration<long double>(9223372036.0… in sleep_for() local 45 if (__d < __max) { in sleep_for()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__thread/ |
| H A D | this_thread.h | 40 chrono::duration<long double> __max = chrono::duration<long double>(9223372036.0L); in sleep_for() local 42 if (__d < __max) { in sleep_for()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/ |
| H A D | bsd_like.h | 148 __strftime(char* __s, size_t __max, const char* __format, const struct tm* __tm, __locale_t __loc) { in __strftime() argument 149 return ::strftime_l(__s, __max, __format, __tm, __loc); in __strftime() 181 inline _LIBCPP_HIDE_FROM_ABI int __mbtowc(wchar_t* __pwc, const char* __pmb, size_t __max, __locale… in __mbtowc() argument 182 return ::mbtowc_l(__pwc, __pmb, __max, __loc); in __mbtowc()
|
| H A D | linux.h | 175 __strftime(char* __s, size_t __max, const char* __format, const struct tm* __tm, __locale_t __loc) { in __strftime() argument 176 return strftime_l(__s, __max, __format, __tm, __loc); in __strftime() 221 inline _LIBCPP_HIDE_FROM_ABI int __mbtowc(wchar_t* __pwc, const char* __pmb, size_t __max, __locale… in __mbtowc() argument 223 return std::mbtowc(__pwc, __pmb, __max); in __mbtowc()
|
| H A D | fuchsia.h | 107 inline _LIBCPP_HIDE_FROM_ABI int __mbtowc(wchar_t* __pwc, const char* __pmb, size_t __max, __locale… in __mbtowc() argument 109 return std::mbtowc(__pwc, __pmb, __max); in __mbtowc()
|
| H A D | windows.h | 267 inline _LIBCPP_HIDE_FROM_ABI int __mbtowc(wchar_t* __pwc, const char* __pmb, size_t __max, __locale… in __mbtowc() argument 268 return ::_mbtowc_l(__pwc, __pmb, __max, __loc); in __mbtowc()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | locale_base_api.h | 247 __strftime(char* __s, size_t __max, const char* __format, const tm* __tm, __locale_t __loc) { in __strftime() argument 248 return strftime_l(__s, __max, __format, __tm, __loc); in __strftime() 275 inline _LIBCPP_HIDE_FROM_ABI int __mbtowc(wchar_t* __pwc, const char* __pmb, size_t __max, __locale… in __mbtowc() argument 276 return __libcpp_mbtowc_l(__pwc, __pmb, __max, __loc); in __mbtowc()
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | ranges_max.h | 39 struct __max { struct 91 inline constexpr auto max = __max{}; argument
|
| H A D | radix_sort.h | 80 auto __max = *__first; in __partial_sum_max() local 85 if (__max < *__first) { in __partial_sum_max() 86 __max = *__first; in __partial_sum_max() 91 return {++__result, __max}; in __partial_sum_max()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/no_locale/ |
| H A D | characters.h | 88 __strftime(char* __s, size_t __max, const char* __format, const struct tm* __tm, __locale_t) { in __strftime() argument 89 return std::strftime(__s, __max, __format, __tm); in __strftime()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__support/xlocale/ |
| H A D | __posix_l_fallback.h | 93 strftime_l(char* __s, size_t __max, const char* __format, const struct tm* __tm, locale_t) { in strftime_l() argument 94 return ::strftime(__s, __max, __format, __tm); in strftime_l()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__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,… in __libcpp_mbtowc_l() argument 72 return mbtowc(__pwc, __pmb, __max); in __libcpp_mbtowc_l()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/ |
| H A D | bsd_locale_fallbacks.h | 84 inline _LIBCPP_HIDE_FROM_ABI int __libcpp_mbtowc_l(wchar_t* __pwc, const char* __pmb, size_t __max,… in __libcpp_mbtowc_l() argument 86 return mbtowc(__pwc, __pmb, __max); in __libcpp_mbtowc_l()
|
| /freebsd/contrib/llvm-project/libcxx/include/__new/ |
| H A D | align_val_t.h | 24 enum align_val_t { __zero = 0, __max = (size_t)-1 };
|
| /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/__cxx03/ |
| H A D | limits | 196 static const type __max = is_signed ? type(type(~0) ^ __min) : type(~0); 198 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static type max() _NOEXCEPT { return __max; } 247 static const type __max = true; 249 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static type max() _NOEXCEPT { return __max; }
|
| H A D | regex | 1503 size_t __max = numeric_limits<size_t>::max()) 1506 __max_(__max), 2519 size_t __max, 3126 int __max = -1; 3127 __first = __parse_DUP_COUNT(__first, __last, __max); 3131 if (__max == -1) 3134 if (__max < __min) 3136 __push_loop(__min, __max, __s, __mexp_begin, __mexp_end, true); 3210 int __max = -1; 3211 __temp = __parse_DUP_COUNT(__first, __last, __max); [all …]
|