| /freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
| H A D | to_chars_integral.h | 93 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base); 97 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base) { in __to_chars_integral() argument 104 return std::__to_chars_integral(__first, __last, __x, __base); in __to_chars_integral() 243 …XPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __to_chars_integral_width(_Tp __value, unsigned __base) { 246 unsigned __base_2 = __base * __base; 247 unsigned __base_3 = __base_2 * __base; 252 if (__value < __base) 270 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base) { 271 if (__base == 10) [[likely]] 274 switch (__base) { [all …]
|
| H A D | from_chars_integral.h | 86 …CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI __in_pattern_result __in_pattern(_Tp __c, int __base) { in __in_pattern() argument 87 if (__base <= 10) in __in_pattern() 88 return {'0' <= __c && __c < '0' + __base, __c - '0'}; in __in_pattern() 91 else if ('a' <= __c && __c < 'a' + __base - 10) in __in_pattern() 94 return {'A' <= __c && __c < 'A' + __base - 10, __c - 'A' + 10}; in __in_pattern() 176 __from_chars_integral(const char* __first, const char* __last, _Tp& __value, int __base) { in __from_chars_integral() argument 177 if (__base == 10) in __from_chars_integral() 212 __base); in __from_chars_integral() 217 __from_chars_integral(const char* __first, const char* __last, _Tp& __value, int __base) { in __from_chars_integral() argument 219 return std::__sign_combinator(__first, __last, __value, __from_chars_integral<__t>, __base); in __from_chars_integral() [all …]
|
| /freebsd/crypto/openssl/Configurations/platform/ |
| H A D | BASE.pm | 28 sub staticname { return __base($_[1], '.a') } # Name of static lib 41 sub def { return __base($_[1], '.ld') . $_[0]->defext() } 42 sub obj { return __base($_[1], '.o') . $_[0]->objext() } 43 sub res { return __base($_[1], '.res') . $_[0]->resext() } 44 sub dep { return __base($_[1], '.o') . $_[0]->depext() } # <- objname 45 sub asm { return __base($_[1], '.s') . $_[0]->asmext() } 70 sub __base { subroutine
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | limits | 453 typedef __libcpp_numeric_limits<_Tp> __base; 454 typedef typename __base::type type; 457 static inline _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized; 458 …d__]] _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type min() _NOEXCEPT { return __base::min(); } 459 …d__]] _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type max() _NOEXCEPT { return __base::max(); } 460 …_LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT { return __base::lowest(); } 462 static inline _LIBCPP_CONSTEXPR const int digits = __base::digits; 463 static inline _LIBCPP_CONSTEXPR const int digits10 = __base::digits10; 464 static inline _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10; 465 static inline _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed; [all …]
|
| H A D | list | 338 typedef __list_node_base<_Tp, _VoidPtr> __base; 339 typedef typename __base::__base_pointer __base_pointer; 342 : __base(__prev, __next) {} 688 typedef __list_imp<_Tp, _Alloc> __base; 689 typedef typename __base::__node_type __node_type; 690 typedef typename __base::__node_allocator __node_allocator; 691 typedef typename __base::__node_pointer __node_pointer; 692 typedef typename __base::__node_alloc_traits __node_alloc_traits; 693 typedef typename __base::__node_base __node_base; 694 typedef typename __base::__node_base_pointer __node_base_pointer; [all …]
|
| H A D | bitset | 621 typedef __bitset<__n_words, _Size> __base; 622 typedef typename __base::reference reference; 623 typedef typename __base::__const_reference __const_reference; 628 … : __base(sizeof(unsigned long long) * CHAR_BIT <= _Size ? __v : __v & ((1ULL << _Size) - 1)) {} 688 return __base::__make_ref(__p); 693 return __base::__make_ref(__p); 698 return __base::__make_ref(__p); 700 …ROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long to_ulong() const { return __base::to_ulong(); } 702 return __base::to_ullong(); 722 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool all() const _NOEXCEPT { return __base::al… [all …]
|
| H A D | forward_list | 640 typedef __forward_list_base<_Tp, _Alloc> __base; 641 typedef typename __base::__node_allocator __node_allocator; 642 typedef typename __base::__node_type __node_type; 643 typedef typename __base::__node_traits __node_traits; 644 typedef typename __base::__node_pointer __node_pointer; 645 typedef typename __base::__begin_node_pointer __begin_node_pointer; 666 typedef typename __base::iterator iterator; 667 typedef typename __base::const_iterator const_iterator; 686 : __base(__a) { 701 : __base(__a) { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | limits | 435 typedef __libcpp_numeric_limits<_Tp> __base; 436 typedef typename __base::type type; 439 static const bool is_specialized = __base::is_specialized; 440 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static type min() _NOEXCEPT { return __base::min(); } 441 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static type max() _NOEXCEPT { return __base::max(); } 442 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static type lowest() _NOEXCEPT { return __base::lowest(); } 444 static const int digits = __base::digits; 445 static const int digits10 = __base::digits10; 446 static const int max_digits10 = __base::max_digits10; 447 static const bool is_signed = __base::is_signed; [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__locale_dir/locale_base_api/ |
| H A D | musl.h | 23 inline _LIBCPP_HIDE_FROM_ABI long long strtoll_l(const char* __nptr, char** __endptr, int __base, l… in strtoll_l() argument 24 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 27 …FROM_ABI unsigned long long strtoull_l(const char* __nptr, char** __endptr, int __base, locale_t) { in strtoull_l() argument 28 return ::strtoull(__nptr, __endptr, __base); in strtoull_l()
|
| H A D | ibm.h | 56 inline _LIBCPP_HIDE_FROM_ABI long long strtoll_l(const char* __nptr, char** __endptr, int __base, l… in strtoll_l() argument 58 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 77 strtoull_l(const char* __nptr, char** __endptr, int __base, locale_t locale) { in strtoull_l() argument 79 return ::strtoull(__nptr, __endptr, __base); in strtoull_l()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/ |
| H A D | musl.h | 23 inline _LIBCPP_HIDE_FROM_ABI long long strtoll_l(const char* __nptr, char** __endptr, int __base, l… in strtoll_l() argument 24 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 27 …FROM_ABI unsigned long long strtoull_l(const char* __nptr, char** __endptr, int __base, locale_t) { in strtoull_l() argument 28 return ::strtoull(__nptr, __endptr, __base); in strtoull_l()
|
| H A D | ibm.h | 56 inline _LIBCPP_HIDE_FROM_ABI long long strtoll_l(const char* __nptr, char** __endptr, int __base, l… in strtoll_l() argument 58 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 77 strtoull_l(const char* __nptr, char** __endptr, int __base, locale_t locale) { in strtoull_l() argument 79 return ::strtoull(__nptr, __endptr, __base); in strtoull_l()
|
| /freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
| H A D | atomic_ref.h | 244 using __base _LIBCPP_NODEBUG = __atomic_ref_base<_Tp>; 246 _LIBCPP_HIDE_FROM_ABI explicit atomic_ref(_Tp& __obj) : __base(__obj) { 248 reinterpret_cast<uintptr_t>(std::addressof(__obj)) % __base::required_alignment == 0, 254 …_LIBCPP_HIDE_FROM_ABI _Tp operator=(_Tp __desired) const noexcept { return __base::operator=(__des… 262 using __base _LIBCPP_NODEBUG = __atomic_ref_base<_Tp>; 264 using difference_type = __base::value_type; 266 _LIBCPP_HIDE_FROM_ABI explicit atomic_ref(_Tp& __obj) : __base(__obj) { 268 reinterpret_cast<uintptr_t>(std::addressof(__obj)) % __base::required_alignment == 0, 274 …_LIBCPP_HIDE_FROM_ABI _Tp operator=(_Tp __desired) const noexcept { return __base::operator=(__des… 308 using __base _LIBCPP_NODEBUG = __atomic_ref_base<_Tp>; [all …]
|
| H A D | atomic.h | 149 using __base _LIBCPP_NODEBUG = __atomic_base<_Tp, false>; 151 using difference_type = typename __base::value_type; 155 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __atomic_base(_Tp __d) _NOEXCEPT : __base(__d) {} 242 using __base _LIBCPP_NODEBUG = __atomic_base<_Tp>; 250 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR atomic(_Tp __d) _NOEXCEPT : __base(__d) {} 253 __base::store(__d); 257 __base::store(__d); 269 using __base _LIBCPP_NODEBUG = __atomic_base<_Tp*>; 275 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR atomic(_Tp* __d) _NOEXCEPT : __base(__d) {} 278 __base::store(__d); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__support/xlocale/ |
| H A D | __strtonum_fallback.h | 37 inline _LIBCPP_HIDE_FROM_ABI long long strtoll_l(const char* __nptr, char** __endptr, int __base, l… in strtoll_l() argument 38 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 41 …FROM_ABI unsigned long long strtoull_l(const char* __nptr, char** __endptr, int __base, locale_t) { in strtoull_l() argument 42 return ::strtoull(__nptr, __endptr, __base); in strtoull_l()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/no_locale/ |
| H A D | strtonum.h | 37 inline _LIBCPP_HIDE_FROM_ABI long long __strtoll(const char* __nptr, char** __endptr, int __base, _… in __strtoll() argument 38 return std::strtoll(__nptr, __endptr, __base); in __strtoll() 42 __strtoull(const char* __nptr, char** __endptr, int __base, __locale_t) { in __strtoull() argument 43 return std::strtoull(__nptr, __endptr, __base); in __strtoull()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__random/ |
| H A D | generate_canonical.h | 35 _RealType __base = __rp; in generate_canonical() local 37 for (size_t __i = 1; __i < __k; ++__i, __base *= __rp) in generate_canonical() 38 __sp += (__g() - _URNG::min()) * __base; in generate_canonical() 39 return __sp / __base; in generate_canonical()
|
| /freebsd/contrib/llvm-project/libcxx/include/__random/ |
| H A D | generate_canonical.h | 40 _RealType __base = __rp; in generate_canonical() 42 for (size_t __i = 1; __i < __k; ++__i, __base *= __rp) in generate_canonical() local 43 __sp += (__g() - _URNG::min()) * __base; in generate_canonical() 44 return __sp / __base; in generate_canonical()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/ |
| H A D | linux.h | 66 …IDE_FROM_ABI __locale_t __newlocale(int __category_mask, const char* __locale, __locale_t __base) { in __newlocale() argument 67 return ::newlocale(__category_mask, __locale, __base); in __newlocale() 97 inline _LIBCPP_HIDE_FROM_ABI long long __strtoll(const char* __nptr, char** __endptr, int __base, _… in __strtoll() argument 99 return ::strtoll_l(__nptr, __endptr, __base, __loc); in __strtoll() 102 return ::strtoll(__nptr, __endptr, __base); in __strtoll() 107 __strtoull(const char* __nptr, char** __endptr, int __base, __locale_t __loc) { in __strtoull() argument 109 return ::strtoull_l(__nptr, __endptr, __base, __loc); in __strtoull() 112 return ::strtoull(__nptr, __endptr, __base); in __strtoull()
|
| H A D | bsd_like.h | 52 …IDE_FROM_ABI __locale_t __newlocale(int __category_mask, const char* __locale, __locale_t __base) { in __newlocale() argument 53 return ::newlocale(__category_mask, __locale, __base); in __newlocale() 80 inline _LIBCPP_HIDE_FROM_ABI long long __strtoll(const char* __nptr, char** __endptr, int __base, _… in __strtoll() argument 81 return ::strtoll_l(__nptr, __endptr, __base, __loc); in __strtoll() 85 __strtoull(const char* __nptr, char** __endptr, int __base, __locale_t __loc) { in __strtoull() argument 86 return ::strtoull_l(__nptr, __endptr, __base, __loc); in __strtoull()
|
| /freebsd/stand/i386/btx/lib/ |
| H A D | btxv86.h | 60 extern uint32_t __base; 63 #define PTOV(pa) ((caddr_t)(pa) - __base) 64 #define VTOP(va) ((vm_offset_t)(va) + __base)
|
| /freebsd/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | function.h | 131 class __base; 134 class __base<_Rp(_ArgTypes...)> { 136 __base(const __base&) = delete; 137 __base& operator=(const __base&) = delete; 139 _LIBCPP_HIDE_FROM_ABI __base() {} 140 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual ~__base() {} 141 virtual __base* __clone() const = 0; 142 virtual void __clone(__base*) const = 0; 158 class __func<_Fp, _Rp(_ArgTypes...)> : public __base<_Rp(_ArgTypes...)> { 165 …_LIBCPP_HIDE_FROM_ABI_VIRTUAL __base<_Rp(_ArgTypes...)>* __clone() const override { return new __f… [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | num.h | 76 int __base, 126 int __base, in __stage2_int_loop() argument 150 switch (__base) { in __stage2_int_loop() 153 if (__f >= __base) in __stage2_int_loop() 277 …m_get_signed_integral(const char* __a, const char* __a_end, ios_base::iostate& __err, int __base) { 282 long long __ll = __locale::__strtoll(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); 304 …get_unsigned_integral(const char* __a, const char* __a_end, ios_base::iostate& __err, int __base) { 314 unsigned long long __ll = __locale::__strtoull(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); 475 int __base = this->__get_base(__iob); 499 __base, [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__iterator/ |
| H A D | aliasing_iterator.h | 51 _LIBCPP_HIDE_FROM_ABI __iterator(_BaseIter __base) _NOEXCEPT : __base_(__base) {} in __iterator() 101 _LIBCPP_HIDE_FROM_ABI _BaseIter __base() const _NOEXCEPT { return __base_; } in __base() function
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/ |
| H A D | math64.h | 35 uint32_t __base = (base); \ 37 __rem = ((uint64_t)(n)) % __base; \ 38 (n) = ((uint64_t)(n)) / __base; \
|