Searched refs:__min (Results 1 – 11 of 11) sorted by relevance
/freebsd/lib/libc/locale/ |
H A D | nextwctype.c | 59 if (rr->__ranges != NULL && wc < rr->__ranges[0].__min) { in nextwctype_l() 60 wc = rr->__ranges[0].__min; in nextwctype_l() 68 if (re->__min <= wc && wc <= re->__max) in nextwctype_l() 79 if (re->__min <= wc && wc <= re->__max) { in nextwctype_l() 82 if (re->__types[wc - re->__min] & wct) in nextwctype_l() 88 wc = re->__min; in nextwctype_l() 91 if (re->__types[wc - re->__min] & wct) in nextwctype_l()
|
H A D | toupper.c | 61 if (re->__min <= c && c <= re->__max) in ___toupper_l() 63 return (re->__map + c - re->__min); in ___toupper_l()
|
H A D | tolower.c | 61 if (re->__min <= c && c <= re->__max) in ___tolower_l() 62 return (re->__map + c - re->__min); in ___tolower_l()
|
H A D | runetype.c | 61 if (re->__min <= c && c <= re->__max) { in ___runetype_l() 63 return(re->__types[c - re->__min]); in ___runetype_l()
|
H A D | rune.c | 191 rr[x].__min = frr[x].min; in _Read_RuneMagi() 195 int len = rr[x].__max - rr[x].__min + 1; in _Read_RuneMagi() 209 rr[x].__min = frr[x].min; in _Read_RuneMagi() 217 rr[x].__min = frr[x].min; in _Read_RuneMagi()
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | ranges_min.h | 38 namespace __min { 85 inline constexpr auto min = __min::__fn{};
|
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | aligned_storage.h | 78 static const size_t __min = _A2 < _A1 ? _A2 : _A1; 82 static const size_t value = _Len < __max ? __min : __max;
|
/freebsd/include/ |
H A D | runetype.h | 48 __rune_t __min; /* First rune of the range */ member
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | limits | 199 …static _LIBCPP_CONSTEXPR const type __min = __libcpp_compute_min<type, digits, is_signed>::v… 200 static _LIBCPP_CONSTEXPR const type __max = is_signed ? type(type(~0) ^ __min) : type(~0); 201 …CPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type min() _NOEXCEPT { return __min; } 250 static _LIBCPP_CONSTEXPR const type __min = false; 252 …CPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type min() _NOEXCEPT { return __min; }
|
H A D | regex | 1515 size_t __min = 0, 1518 __min_(__min), 2545 … size_t __min, __owns_one_state<_CharT>* __s, unsigned __mexp_begin = 0, unsigned __mexp_end = 0) { 2546 __push_loop(__min, numeric_limits<size_t>::max(), __s, __mexp_begin, __mexp_end); 2549 … size_t __min, __owns_one_state<_CharT>* __s, unsigned __mexp_begin = 0, unsigned __mexp_end = 0) { 2550 __push_loop(__min, numeric_limits<size_t>::max(), __s, __mexp_begin, __mexp_end, false); 2552 void __push_loop(size_t __min, 3150 int __min = 0; 3152 __temp = __parse_DUP_COUNT(__first, __last, __min); 3162 __push_loop(__min, __min, __s, __mexp_begin, __mexp_end, true); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | algorithm_impl.h |
|