/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __bit_reference | 116 template <class _Cp, class _Dp> 118 swap(__bit_reference<_Cp> __x, __bit_reference<_Dp> __y) _NOEXCEPT { 966 template <class _Dp> 969 template <bool _FillVal, class _Dp> 971 __fill_n_bool(__bit_iterator<_Dp, false> __first, typename _Dp::size_type __n); 973 template <class _Dp, bool _IC> 974 _LIBCPP_CONSTEXPR_SINCE_CXX20 friend __bit_iterator<_Dp, false> __copy_aligned( 975 …__bit_iterator<_Dp, _IC> __first, __bit_iterator<_Dp, _IC> __last, __bit_iterator<_Dp, false> __re… 976 template <class _Dp, bool _IC> 977 _LIBCPP_CONSTEXPR_SINCE_CXX20 friend __bit_iterator<_Dp, false> __copy_unaligned( [all …]
|
H A D | any | 408 typedef __allocator_destructor<_Alloc> _Dp; 410 unique_ptr<_Tp, _Dp> __hold(_ATraits::allocate(__a, 1), _Dp(__a, 1));
|
H A D | future | 1502 typedef __allocator_destructor<_Ap> _Dp; 1503 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 1521 typedef __allocator_destructor<_Ap> _Dp; 1522 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
|
H A D | deque | 432 template <class _Vp, class _Pp, class _Rp, class _MP, class _Dp, _Dp> 2048 typedef __allocator_destructor<_Allocator> _Dp; 2049 …unique_ptr<pointer, _Dp> __hold(__alloc_traits::allocate(__a, __block_size), _Dp(__a, __block_size… 2171 typedef __allocator_destructor<_Allocator> _Dp; 2172 …unique_ptr<pointer, _Dp> __hold(__alloc_traits::allocate(__a, __block_size), _Dp(__a, __block_size…
|
H A D | __hash_table | 903 typedef __hash_node_destructor<__node_allocator> _Dp; 904 typedef unique_ptr<__node, _Dp> __node_holder; 1792 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); 1816 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); 1902 return __node_holder(__cn->__upcast(), _Dp(__node_alloc(), true));
|
H A D | map | 1440 typedef __map_node_destructor<__node_allocator> _Dp; 1441 typedef unique_ptr<__node, _Dp> __node_holder; 1536 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); 2023 typedef __map_node_destructor<__node_allocator> _Dp; 2024 typedef unique_ptr<__node, _Dp> __node_holder;
|
H A D | unordered_map | 1056 typedef __hash_map_node_destructor<__node_allocator> _Dp; 1057 typedef unique_ptr<__node, _Dp> __node_holder; 1748 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); 1858 typedef __hash_map_node_destructor<__node_allocator> _Dp; 1859 typedef unique_ptr<__node, _Dp> __node_holder;
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | mersenne_twister_engine.h | 53 _UInt _Dp, 61 operator==(const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __x, 62 const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 71 _UInt _Dp, 79 operator!=(const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __x, 80 const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 91 _UInt _Dp, 100 const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __x); 111 _UInt _Dp, 120 mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _S [all...] |
H A D | shuffle_order_engine.h | 42 template <uint64_t _Np, uint64_t _Dp> 44 static_assert(_Dp != 0, "__uratio divide by 0"); 45 static _LIBCPP_CONSTEXPR const uint64_t __gcd = __ugcd<_Np, _Dp>::value; 49 static _LIBCPP_CONSTEXPR const uint64_t den = _Dp / __gcd; 150 uint64_t _Dp, 151 __enable_if_t<(__uratio<_Np, _Dp>::num > 0xFFFFFFFFFFFFFFFFull / (_Max - _Min)), int> = 0> 152 _LIBCPP_HIDE_FROM_ABI result_type __eval(__uratio<_Np, _Dp>) { 153 return __evalf<__uratio<_Np, _Dp>::num, __uratio<_Np, _Dp>::den>(); 157 uint64_t _Dp, [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | unique_ptr.h | 137 template <class _Tp, class _Dp = default_delete<_Tp> > 141 typedef _Dp deleter_type; 160 typedef _LIBCPP_NODEBUG __unique_ptr_deleter_sfinae<_Dp> _DeleterSFINAE; 184 __enable_if_t< (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) || 185 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value) >; 188 using _EnableIfDeleterAssignable = __enable_if_t< is_assignable<_Dp&, _UDel&&>::value >; 227 …__enable_if_t<is_convertible<_Up*, _Tp*>::value && is_same<_Dp, default_delete<_Tp> >::value, int>… 249 …__enable_if_t<is_convertible<_Up*, _Tp*>::value && is_same<_Dp, default_delete<_Tp> >::value, int>… 298 template <class _Tp, class _Dp> 299 class _LIBCPP_UNIQUE_PTR_TRIVIAL_ABI _LIBCPP_TEMPLATE_VIS unique_ptr<_Tp[], _Dp> { [all …]
|
H A D | shared_ptr.h | 199 template <class _Tp, class _Dp, class _Alloc> 201 __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_; 204 _LIBCPP_HIDE_FROM_ABI __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a) in __shared_ptr_pointer() 205 : __data_(__compressed_pair<_Tp, _Dp>(__p, std::move(__d)), std::move(__a)) {} in __shared_ptr_pointer() 218 template <class _Tp, class _Dp, class _Alloc> 219 const void* __shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEX… in __get_deleter() 220 return __t == typeid(_Dp) ? std::addressof(__data_.first().second()) : nullptr; in __get_deleter() 225 template <class _Tp, class _Dp, class _Alloc> 226 void __shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT { in __on_zero_shared() 228 __data_.first().second().~_Dp(); in __on_zero_shared() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__compare/ |
H A D | strong_order.h | 53 template <class _Tp, class _Up, class _Dp = decay_t<_Tp>> 54 requires is_same_v<_Dp, decay_t<_Up>> && is_floating_point_v<_Dp> 56 if constexpr (numeric_limits<_Dp>::is_iec559 && sizeof(_Dp) == sizeof(int32_t)) { in __go() 62 } else if constexpr (numeric_limits<_Dp>::is_iec559 && sizeof(_Dp) == sizeof(int64_t)) { in __go() 73 if constexpr (numeric_limits<_Dp>::radix == 2) { in __go() 100 …static_assert(sizeof(_Dp) == 0, "std::strong_order is unimplemented for this floating-point type"); in __go()
|
H A D | weak_order.h | 46 template <class _Tp, class _Up, class _Dp = decay_t<_Tp>> 47 requires is_same_v<_Dp, decay_t<_Up>> && is_floating_point_v<_Dp>
|
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | is_base_of.h | 21 template <class _Bp, class _Dp> 22 struct _LIBCPP_TEMPLATE_VIS is_base_of : public integral_constant<bool, __is_base_of(_Bp, _Dp)> {}; 25 template <class _Bp, class _Dp> 26 inline constexpr bool is_base_of_v = __is_base_of(_Bp, _Dp);
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | shuffle.h | 98 typedef uniform_int_distribution<ptrdiff_t> _Dp; in random_shuffle() 99 typedef typename _Dp::param_type _Pp; in random_shuffle() 102 _Dp __uid; in random_shuffle() 138 typedef uniform_int_distribution<ptrdiff_t> _Dp; 139 typedef typename _Dp::param_type _Pp; 145 _Dp __uid; in __shuffle() 100 typedef uniform_int_distribution<ptrdiff_t> _Dp; random_shuffle() typedef 143 typedef uniform_int_distribution<ptrdiff_t> _Dp; __shuffle() typedef
|
/freebsd/contrib/llvm-project/libcxx/include/__concepts/ |
H A D | derived_from.h | 26 template <class _Dp, class _Bp> 27 concept derived_from = is_base_of_v<_Bp, _Dp> && is_convertible_v<const volatile _Dp*, const volati…
|
/freebsd/lib/msun/bsdsrc/ |
H A D | mathimpl.h | 53 _b_trunc(volatile double *_dp) in _b_trunc() argument 57 GET_LOW_WORD(_lw, *_dp); in _b_trunc() 58 SET_LOW_WORD(*_dp, _lw & 0xf8000000); in _b_trunc()
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | time_zone.h | 135 using _Dp = common_type_t<_Duration, seconds>; in to_local() local 140 … __info.offset >= chrono::seconds{0} || __time.time_since_epoch() >= _Dp::min() - __info.offset, in to_local() 144 … __info.offset <= chrono::seconds{0} || __time.time_since_epoch() <= _Dp::max() - __info.offset, in to_local() 147 return local_time<_Dp>{__time.time_since_epoch() + __info.offset}; in to_local()
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | format_arg_store.h | 165 using _Dp = remove_const_t<_Tp>; in __create_format_arg() local 166 constexpr __arg_t __arg = __determine_arg_t<_Context, _Dp>(); in __create_format_arg() 176 if constexpr (same_as<typename _Context::char_type, wchar_t> && same_as<_Dp, char>) in __create_format_arg() 191 if constexpr (is_array_v<_Dp>) in __create_format_arg() 193 __arg, basic_string_view<typename _Context::char_type>{__value, extent_v<_Dp> - 1}}; in __create_format_arg()
|
H A D | format_arg.h | 218 using _Dp = remove_const_t<_Tp>; in __handle() 219 using _Qp = conditional_t<__formattable_with<const _Dp, _Context>, const _Dp, _Dp>; in __handle() 222 typename _Context::template formatter_type<_Dp> __f; in __handle() 224 __ctx.advance_to(__f.format(*const_cast<_Qp*>(static_cast<const _Dp*>(__ptr)), __ctx)); in __handle()
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | function.h | 178 typedef __allocator_destructor<_AA> _Dp; 179 unique_ptr<__alloc_func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 286 typedef __allocator_destructor<_Ap> _Dp; 287 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 363 typedef __allocator_destructor<_FunAlloc> _Dp; 364 unique_ptr<__func, _Dp> __hold(__af.allocate(1), _Dp(__af, 1)); 652 typedef __allocator_destructor<_FunAlloc> _Dp; 653 unique_ptr<_Fun, _Dp> __hold(__af.allocate(1), _Dp(__af, 1));
|
/freebsd/contrib/llvm-project/libcxx/include/ext/ |
H A D | hash_map | 472 typedef __hash_map_node_destructor<__node_allocator> _Dp; 473 typedef std::unique_ptr<__node, _Dp> __node_holder; 613 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); 696 typedef __hash_map_node_destructor<__node_allocator> _Dp; 697 typedef std::unique_ptr<__node, _Dp> __node_holder;
|
/freebsd/contrib/llvm-project/libcxx/include/__ostream/ |
H A D | basic_ostream.h | 783 class _Dp, 786 … << std::declval<typename unique_ptr<_Yp, _Dp>::pointer>()))> >::value, 789 operator<<(basic_ostream<_CharT, _Traits>& __os, unique_ptr<_Yp, _Dp> const& __p) {
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | ci-hdrc-usb2.txt | 106 USB_OTG*_DP and USB_OTG*_DN pins after a J-to-K or K-to-J transition.
|
H A D | ci-hdrc-usb2.yaml | 285 the amount of current sourced to the USB_OTG*_DP and USB_OTG*_DN
|