Home
last modified time | relevance | path

Searched refs:__base (Results 1 – 25 of 55) sorted by relevance

123

/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_integral.h96 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type);
100 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, true_type) { in __to_chars_integral() argument
107 return std::__to_chars_integral(__first, __last, __x, __base, false_type()); in __to_chars_integral()
249 …XPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __to_chars_integral_width(_Tp __value, unsigned __base) {
252 unsigned __base_2 = __base * __base;
253 unsigned __base_3 = __base_2 * __base;
258 if (__value < __base)
276 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type) {
277 if (__base == 10) [[likely]]
280 switch (__base) {
[all …]
H A Dfrom_chars_integral.h86 …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 DBASE.pm28 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/__locale_dir/locale_base_api/
H A Dmusl.h23 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 Dibm.h56 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 Datomic_ref.h242 using __base = __atomic_ref_base<_Tp>;
244 _LIBCPP_HIDE_FROM_ABI explicit atomic_ref(_Tp& __obj) : __base(__obj) {
246 reinterpret_cast<uintptr_t>(std::addressof(__obj)) % __base::required_alignment == 0,
252 …_LIBCPP_HIDE_FROM_ABI _Tp operator=(_Tp __desired) const noexcept { return __base::operator=(__des…
260 using __base = __atomic_ref_base<_Tp>;
262 using difference_type = typename __base::value_type;
264 _LIBCPP_HIDE_FROM_ABI explicit atomic_ref(_Tp& __obj) : __base(__obj) {
266 reinterpret_cast<uintptr_t>(std::addressof(__obj)) % __base::required_alignment == 0,
272 …_LIBCPP_HIDE_FROM_ABI _Tp operator=(_Tp __desired) const noexcept { return __base::operator=(__des…
306 using __base = __atomic_ref_base<_Tp>;
[all …]
H A Datomic.h37 using __base = __atomic_base<_Tp>; member
47 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR atomic(_Tp __d) _NOEXCEPT : __base(__d) {} in atomic()
50 __base::store(__d);
54 __base::store(__d);
66 using __base = __atomic_base<_Tp*>;
72 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR atomic(_Tp* __d) _NOEXCEPT : __base(__d) {}
75 __base::store(__d);
79 __base::store(__d);
193 using __base = __atomic_base<_Tp>;
198 _LIBCPP_HIDE_FROM_ABI constexpr atomic(_Tp __d) noexcept : __base(__d) {}
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dlimits463 typedef __libcpp_numeric_limits<_Tp> __base;
464 typedef typename __base::type type;
467 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized;
468 …SCARD _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type min() _NOEXCEPT { return __base::min(); }
469 …SCARD _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type max() _NOEXCEPT { return __base::max(); }
470 …_LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT { return __base::lowest(); }
472 static _LIBCPP_CONSTEXPR const int digits = __base::digits;
473 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10;
474 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10;
475 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed;
[all …]
H A Dmap996 typedef __tree<__value_type, __vc, __allocator_type> __base;
997 typedef typename __base::__node_traits __node_traits;
1002 __base __tree_;
1009 typedef __map_iterator<typename __base::iterator> iterator;
1010 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
1015 typedef __map_node_handle<typename __base::__node, allocator_type> node_type;
1034 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
1045 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
1056 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
1091 _LIBCPP_HIDE_FROM_ABI map(map&& __m) noexcept(is_nothrow_move_constructible<__base>::value)
[all …]
H A Dset578 typedef __tree<value_type, value_compare, allocator_type> __base;
583 __base __tree_;
586 typedef typename __base::pointer pointer;
587 typedef typename __base::const_pointer const_pointer;
588 typedef typename __base::size_type size_type;
589 typedef typename __base::difference_type difference_type;
590 typedef typename __base::const_iterator iterator;
591 typedef typename __base::const_iterator const_iterator;
596 typedef __set_node_handle<typename __base::__node, allocator_type> node_type;
660 _LIBCPP_HIDE_FROM_ABI set(set&& __s) noexcept(is_nothrow_move_constructible<__base>::value)
[all …]
H A Dfuture1446 typedef __packaged_task_base<_Rp(_ArgTypes...)> __base;
1448 _LIBCPP_HIDE_FROM_ABI _LIBCPP_NO_CFI __base* __get_buf() { return (__base*)&__buf_; }
1453 __base* __f_;
1484 __f_ = (__base*)&__buf_;
1498 __f_ = (__base*)&__buf_;
1503 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1516 __f_ = (__base*)&__buf_;
1522 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1558 if (__f_ == (__base*)&__buf_ && __f.__f_ == (__base*)&__f.__buf_) {
1562 __base* __t = (__base*)&__tempbuf;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dgenerate_canonical.h40 _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/stand/i386/btx/lib/
H A Dbtxv86.h60 extern uint32_t __base;
63 #define PTOV(pa) ((caddr_t)(pa) - __base)
64 #define VTOP(va) ((vm_offset_t)(va) + __base)
H A Dbtxcsu.S37 popl __base
46 .comm __base,4 # Client base address
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dfunction.h231 class _LIBCPP_TEMPLATE_VIS __base;
234 class __base<_Rp(_ArgTypes...)> {
236 __base(const __base&) = delete;
237 __base& operator=(const __base&) = delete;
239 _LIBCPP_HIDE_FROM_ABI __base() {}
240 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual ~__base() {}
241 virtual __base* __clone() const = 0;
242 virtual void __clone(__base*) const = 0;
258 class __func<_Fp, _Alloc, _Rp(_ArgTypes...)> : public __base<_Rp(_ArgTypes...)> {
270 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual __base<_Rp(_ArgTypes...)>* __clone() const;
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dmath64.h35 uint32_t __base = (base); \
37 __rem = ((uint64_t)(n)) % __base; \
38 (n) = ((uint64_t)(n)) / __base; \
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Daliasing_iterator.h51 _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/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h235 inline _LIBCPP_HIDE_FROM_ABI path proximate(const path& __p, const path& __base, error_code& __ec) { in proximate() argument
239 path __tmp_base = __weakly_canonical(__base, &__ec); in proximate()
248 inline _LIBCPP_HIDE_FROM_ABI path proximate(const path& __p, const path& __base = current_path()) {
249 return __weakly_canonical(__p).lexically_proximate(__weakly_canonical(__base));
254 inline _LIBCPP_HIDE_FROM_ABI path relative(const path& __p, const path& __base, error_code& __ec) { in relative() argument
258 path __tmpbase = __weakly_canonical(__base, &__ec); in relative()
267 inline _LIBCPP_HIDE_FROM_ABI path relative(const path& __p, const path& __base = current_path()) {
268 return __weakly_canonical(__p).lexically_relative(__weakly_canonical(__base));
/freebsd/contrib/llvm-project/libcxx/include/__expected/
H A Dexpected.h460 using __base = __expected_base<_Tp, _Err>;
478 : __base(in_place) {}
491 : __base(__other.__has_val(), __other.__union()) {}
502 : __base(__other.__has_val(), std::move(__other.__union())) {}
529 : __base(__tag, std::forward<_Func>(__f), std::forward<_Args>(__args)...) {}
534 : __base(__tag, std::forward<_Func>(__f), std::forward<_Args>(__args)...) {}
544 : __base(__other.__has_val(), __other.__union()) {}
551 : __base(__other.__has_val(), std::move(__other.__union())) {}
559 : __base(in_place, std::forward<_Up>(__u)) {}
565 : __base(unexpect, __unex.error()) {}
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h161 __DEVICE__ float pow(float __base, float __exp) { in pow() argument
162 return ::powf(__base, __exp); in pow()
164 __DEVICE__ float pow(float __base, int __iexp) { in pow() argument
165 return ::powif(__base, __iexp); in pow()
167 __DEVICE__ double pow(double __base, int __iexp) { in pow() argument
168 return ::powi(__base, __iexp); in pow()
/freebsd/include/ssp/
H A Dunistd.h58 (const char *__name, gid_t __base, gid_t *__buf, int *__lenp),
59 (__name, __base, __buf, __lenp), 1, __ssp_gid_bos, *__lenp);
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Das_rvalue_view.h49 …_LIBCPP_HIDE_FROM_ABI constexpr explicit as_rvalue_view(_View __base) : __base_(std::move(__base))… in as_rvalue_view() argument
H A Ddrop_while_view.h57 _LIBCPP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 drop_while_view(_View __base, _Pred __pred) in base()
58 : __base_(std::move(__base)), __pred_(std::in_place, std::move(__pred)) {} in base()
54 drop_while_view(_View __base,_Pred __pred) drop_while_view() argument
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/
H A Dutil.h
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_integral.h158 …HIDE_FROM_ABI _Iterator __to_buffer(_Iterator __first, _Iterator __last, _Tp __value, int __base) { in __to_buffer() argument
161 …ars_result __r = std::to_chars(std::to_address(__first), std::to_address(__last), __value, __base); in __to_buffer()
292 int __base) { in __format_integer() argument
298 _Iterator __last = __formatter::__to_buffer(__first, __end, __value, __base); in __format_integer()

123