Home
last modified time | relevance | path

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

12

/openbsd/src/gnu/gcc/libstdc++-v3/include/bits/
Dios_base.h788 boolalpha(ios_base& __base) in boolalpha() argument
790 __base.setf(ios_base::boolalpha); in boolalpha()
791 return __base; in boolalpha()
796 noboolalpha(ios_base& __base) in noboolalpha() argument
798 __base.unsetf(ios_base::boolalpha); in noboolalpha()
799 return __base; in noboolalpha()
804 showbase(ios_base& __base) in showbase() argument
806 __base.setf(ios_base::showbase); in showbase()
807 return __base; in showbase()
812 noshowbase(ios_base& __base) in noshowbase() argument
[all …]
Dsstream.tcc231 _M_sync(char_type* __base, __size_type __i, __size_type __o) in _M_sync() argument
235 char_type* __endg = __base + _M_string.size(); in _M_sync()
236 char_type* __endp = __base + _M_string.capacity(); in _M_sync()
238 if (__base != _M_string.data()) in _M_sync()
247 this->setg(__base, __base + __i, __endg); in _M_sync()
250 this->setp(__base, __endp); in _M_sync()
Dlocale_classes.h157 locale(const locale& __base, const char* __s, category __cat); in _GLIBCXX_BEGIN_NAMESPACE()
170 locale(const locale& __base, const locale& __add, category __cat); in _GLIBCXX_BEGIN_NAMESPACE()
328 _M_coalesce(const locale& __base, const locale& __add, category __cat); in _GLIBCXX_BEGIN_NAMESPACE()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/
Dios_base.h678 boolalpha(ios_base& __base) in boolalpha() argument
680 __base.setf(ios_base::boolalpha); in boolalpha()
681 return __base; in boolalpha()
686 noboolalpha(ios_base& __base) in noboolalpha() argument
688 __base.unsetf(ios_base::boolalpha); in noboolalpha()
689 return __base; in noboolalpha()
694 showbase(ios_base& __base) in showbase() argument
696 __base.setf(ios_base::showbase); in showbase()
697 return __base; in showbase()
702 noshowbase(ios_base& __base) in noshowbase() argument
[all …]
Dlocale_facets.tcc257 ios_base::iostate& __err, string& __xtrc, int& __base) const in _M_extract_int()
267 __base = 8; in _M_extract_int()
269 __base = 16; in _M_extract_int()
271 __base = 10; in _M_extract_int()
291 if (__base == 10) in _M_extract_int()
312 __base = 16; in _M_extract_int()
315 __base = 8; in _M_extract_int()
319 else if (__base == 16) in _M_extract_int()
339 if (__base == 16) in _M_extract_int()
342 __len = __base; in _M_extract_int()
[all …]
Dlocale_classes.h102 locale(const locale& __base, const char* __s, category __cat);
104 locale(const locale& __base, const locale& __add, category __cat);
186 _M_coalesce(const locale& __base, const locale& __add, category __cat);
/openbsd/src/gnu/llvm/libcxx/include/
Dlimits454 typedef __libcpp_numeric_limits<__remove_cv_t<_Tp> > __base;
455 typedef typename __base::type type;
457 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized;
458 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();}
459 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();}
460 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(…
462 static _LIBCPP_CONSTEXPR const int digits = __base::digits;
463 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10;
464 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10;
465 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed;
[all …]
Dcharconv340 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type);
344 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base,
354 return std::__to_chars_integral(__first, __last, __x, __base, false_type());
501 __to_chars_integral_width(_Tp __value, unsigned __base) {
504 unsigned __base_2 = __base * __base;
505 unsigned __base_3 = __base_2 * __base;
510 if (__value < __base)
528 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base,
531 if (__base == 10) [[likely]]
534 switch (__base) {
[all …]
Dmap1003 typedef __tree<__value_type, __vc, __allocator_type> __base;
1004 typedef typename __base::__node_traits __node_traits;
1011 __base __tree_;
1018 typedef __map_iterator<typename __base::iterator> iterator;
1019 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
1024 typedef __map_node_handle<typename __base::__node, allocator_type> node_type;
1050 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
1065 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
1104 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
1113 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
[all …]
Dset531 typedef __tree<value_type, value_compare, allocator_type> __base;
538 __base __tree_;
541 typedef typename __base::pointer pointer;
542 typedef typename __base::const_pointer const_pointer;
543 typedef typename __base::size_type size_type;
544 typedef typename __base::difference_type difference_type;
545 typedef typename __base::const_iterator iterator;
546 typedef typename __base::const_iterator const_iterator;
551 typedef __set_node_handle<typename __base::__node, allocator_type> node_type;
620 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
[all …]
Dfuture1702 typedef __packaged_task_base<_Rp(_ArgTypes...)> __base;
1705 __base* __get_buf() { return (__base*)&__buf_; }
1710 __base* __f_;
1745 __f_ = (__base*)&__buf_;
1764 __f_ = (__base*)&__buf_;
1771 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1787 __f_ = (__base*)&__buf_;
1795 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1840 if (__f_ == (__base*)&__buf_ && __f.__f_ == (__base*)&__f.__buf_)
1845 __base* __t = (__base*)&__tempbuf;
[all …]
Dvariant492 struct __base {
505 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl_);
513 struct __base {
571 __access::__base::__get_alt<_Is>(static_cast<_Vs>(__vs))...);
591 return __base::__make_farray(__make_fdiagonal_impl<_Is, _Fp, _Vs...>()...);
613 return __base::__make_farray(__make_fmatrix_impl<_Fp, _Vs...>(
630 return __base::__visit_alt_at(__index,
639 return __base::__visit_alt(
796 class _LIBCPP_TEMPLATE_VIS __base {
801 explicit constexpr __base(__valueless_t __tag) noexcept
[all …]
/openbsd/src/gnu/lib/libstdc++/libstdc++/config/locale/gnu/
Dc_locale.cc46 const __c_locale& __cloc, int __base) in __convert_to_v() argument
52 long __l = __strtol_l(__s, &__sanity, __base, __cloc); in __convert_to_v()
64 int __base) in __convert_to_v() argument
70 unsigned long __ul = __strtoul_l(__s, &__sanity, __base, __cloc); in __convert_to_v()
82 const __c_locale& __cloc, int __base) in __convert_to_v() argument
88 long long __ll = __strtoll_l(__s, &__sanity, __base, __cloc); in __convert_to_v()
100 int __base) in __convert_to_v() argument
106 unsigned long long __ull = __strtoull_l(__s, &__sanity, __base, in __convert_to_v()
/openbsd/src/gnu/lib/libstdc++/libstdc++/config/locale/generic/
Dc_locale.cc48 const __c_locale&, int __base) in __convert_to_v() argument
54 long __l = strtol(__s, &__sanity, __base); in __convert_to_v()
65 ios_base::iostate& __err, const __c_locale&, int __base) in __convert_to_v() argument
71 unsigned long __ul = strtoul(__s, &__sanity, __base); in __convert_to_v()
83 const __c_locale&, int __base) in __convert_to_v() argument
89 long long __ll = strtoll(__s, &__sanity, __base); in __convert_to_v()
100 ios_base::iostate& __err, const __c_locale&, int __base) in __convert_to_v() argument
106 unsigned long long __ull = strtoull(__s, &__sanity, __base); in __convert_to_v()
/openbsd/src/sys/dev/pci/drm/include/asm/
Ddiv64.h9 uint32_t __base = (base); \
10 uint32_t __rem = ((uint64_t)(n)) % __base; \
11 (n) = ((uint64_t)(n)) / __base; \
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/std/
Dstd_sstream.h260 char_type* __base = const_cast<char_type*>(_M_string.data()); in _M_really_sync() local
265 _M_buf = __base; in _M_really_sync()
267 this->setg(__base, __base + __i, __base + __len); in _M_really_sync()
270 this->setp(__base, __base + __len); in _M_really_sync()
Dstd_iomanip.h133 setbase(int __base) in setbase() argument
136 __x._M_base = __base; in setbase()
/openbsd/src/gnu/gcc/libstdc++-v3/src/
Dlocalename.cc146 locale::locale(const locale& __base, const char* __s, category __cat) in locale() argument
153 _M_coalesce(__base, __add, __cat); in locale()
156 locale::locale(const locale& __base, const locale& __add, category __cat) in locale() argument
158 { _M_coalesce(__base, __add, __cat); } in locale()
161 locale::_M_coalesce(const locale& __base, const locale& __add, in _M_coalesce() argument
165 _M_impl = new _Impl(*__base._M_impl, 1); in _M_coalesce()
/openbsd/src/gnu/lib/libstdc++/libstdc++/src/
Dlocale.cc287 locale::locale(const locale& __base, const char* __s, category __cat) in locale() argument
293 _M_coalesce(__base, __add, __cat); in locale()
296 locale::locale(const locale& __base, const locale& __add, category __cat) in locale() argument
297 { _M_coalesce(__base, __add, __cat); } in locale()
391 locale::_M_coalesce(const locale& __base, const locale& __add, in _M_coalesce() argument
395 _M_impl = new _Impl(*__base._M_impl, 1); in _M_coalesce()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/ext/
Dropeimpl.h664 rope<_CharT,_Alloc>::_S_substring(_RopeRep* __base, in _S_substring() argument
667 if (0 == __base) return 0; in _S_substring()
668 size_t __len = __base->_M_size; in _S_substring()
674 __base->_M_ref_nonnil(); in _S_substring()
675 return __base; in _S_substring()
682 switch(__base->_M_tag) { in _S_substring()
685 _RopeConcatenation* __c = (_RopeConcatenation*)__base; in _S_substring()
706 _RopeLeaf* __l = (_RopeLeaf*)__base; in _S_substring()
715 __base->get_allocator()); in _S_substring()
721 __base->get_allocator()); in _S_substring()
[all …]
/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/
Dropeimpl.h719 _S_substring(_RopeRep* __base, size_t __start, size_t __endp1) in _S_substring() argument
721 if (0 == __base) in _S_substring()
723 size_t __len = __base->_M_size; in _S_substring()
731 __base->_M_ref_nonnil(); in _S_substring()
732 return __base; in _S_substring()
741 switch(__base->_M_tag) in _S_substring()
745 _RopeConcatenation* __c = (_RopeConcatenation*)__base; in _S_substring()
767 _RopeLeaf* __l = (_RopeLeaf*)__base; in _S_substring()
778 __base->get_allocator()); in _S_substring()
784 __base-> in _S_substring()
[all …]
/openbsd/src/gnu/llvm/clang/lib/Headers/
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()
D__clang_hip_cmath.h152 __DEVICE__ __CONSTEXPR__ float pow(float __base, int __iexp) { in pow() argument
153 return ::powif(__base, __iexp); in pow()
155 __DEVICE__ __CONSTEXPR__ double pow(double __base, int __iexp) { in pow() argument
156 return ::powi(__base, __iexp); in pow()
176 __DEVICE__ __CONSTEXPR__ _Float16 pow(_Float16 __base, int __iexp) { in pow() argument
177 return __ocml_pown_f16(__base, __iexp); in pow()
/openbsd/src/gnu/gcc/libstdc++-v3/include/debug/
Dsafe_sequence.h77 _After_nth_from(const difference_type& __n, const _Iterator& __base) in _After_nth_from() argument
78 : _M_base(__base), _M_n(__n) { } in _After_nth_from()
/openbsd/src/sys/arch/alpha/include/
D_types.h129 char *__base; member

12