/freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
H A D | atomic_base.h | 142 …_LIBCPP_HIDE_FROM_ABI _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _N… 143 return std::__cxx_atomic_fetch_add(std::addressof(this->__a_), __op, __m); 145 _LIBCPP_HIDE_FROM_ABI _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT { 146 return std::__cxx_atomic_fetch_add(std::addressof(this->__a_), __op, __m); 148 …_LIBCPP_HIDE_FROM_ABI _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _N… 149 return std::__cxx_atomic_fetch_sub(std::addressof(this->__a_), __op, __m); 151 _LIBCPP_HIDE_FROM_ABI _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT { 152 return std::__cxx_atomic_fetch_sub(std::addressof(this->__a_), __op, __m); 154 …_LIBCPP_HIDE_FROM_ABI _Tp fetch_and(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _N… 155 return std::__cxx_atomic_fetch_and(std::addressof(this->__a_), __op, __m); [all …]
|
H A D | atomic.h | 83 …_LIBCPP_HIDE_FROM_ABI _Tp* fetch_add(ptrdiff_t __op, memory_order __m = memory_order_seq_cst) vola… 86 return std::__cxx_atomic_fetch_add(std::addressof(this->__a_), __op, __m); 89 …_LIBCPP_HIDE_FROM_ABI _Tp* fetch_add(ptrdiff_t __op, memory_order __m = memory_order_seq_cst) _NOE… 92 return std::__cxx_atomic_fetch_add(std::addressof(this->__a_), __op, __m); 95 …_LIBCPP_HIDE_FROM_ABI _Tp* fetch_sub(ptrdiff_t __op, memory_order __m = memory_order_seq_cst) vola… 98 return std::__cxx_atomic_fetch_sub(std::addressof(this->__a_), __op, __m); 101 …_LIBCPP_HIDE_FROM_ABI _Tp* fetch_sub(ptrdiff_t __op, memory_order __m = memory_order_seq_cst) _NOE… 104 return std::__cxx_atomic_fetch_sub(std::addressof(this->__a_), __op, __m); 115 …_LIBCPP_HIDE_FROM_ABI _Tp* operator+=(ptrdiff_t __op) volatile _NOEXCEPT { return fetch_add(__op) … 116 _LIBCPP_HIDE_FROM_ABI _Tp* operator+=(ptrdiff_t __op) _NOEXCEPT { return fetch_add(__op) + __op; } [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_texture_intrinsics.h | 21 #define __nv_tex_surf_handler(__op, __ptr, ...) \ argument 23 ::__cuda_tex::__Tag<::__cuda_tex::__tex_op_hash(__op)>>(__ptr, \ 140 #define __ID(__op) __Tag<__tex_op_hash(__op)> argument 143 #define __IDV(__op, __variant) \ argument 144 __Tag<10000 + __tex_op_hash(__op) * 100 + __variant> 190 template <class __op> struct __tex_fetch_v4; 246 #define __IMPL_S3I(__op, __args, __asm_op, __ctype, __asm_op_args, __asm_args) \ 247 template <> struct __tex_fetch_v4<__op> { \ 255 #define __IMPL_S3SI(__op, __args, __asm_op, __ctype, __asm_op_args, \ 257 template <> struct __tex_fetch_v4<__op> { \ [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/cpu_algos/ |
H A D | transform.h | 59 _UnaryOperation __op) const noexcept { in operator() 66 …[&__policy, __op, __first, __result](_ForwardIterator __brick_first, _ForwardIterator __brick_last… in operator() 73 __op); in operator() 86 __out_value = __op(__in_value); in operator() 89 return std::transform(__first, __last, __result, __op); in operator() 107 _BinaryOperation __op) const noexcept { in operator() 115 [&__policy, __op, __first1, __first2, __result]( in operator() 125 __op); in operator() 141 … __iter_reference<_ForwardOutIterator> __out_value) { __out_value = __op(__in1, __in2); }); in operator() 143 return std::transform(__first1, __last1, __first2, __result, __op); in operator()
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | ranges_find_last.h | 78 struct __op { struct 90 …return ranges::__find_last_impl(std::move(__first), std::move(__last), __op<_Type>{__value}, __pro… 97 …return ranges::__find_last_impl(ranges::begin(__range), ranges::end(__range), __op<_Type>{__value}… 105 struct __op { struct 119 …return ranges::__find_last_impl(std::move(__first), std::move(__last), __op<_Pred>{__pred}, __proj… 127 …return ranges::__find_last_impl(ranges::begin(__range), ranges::end(__range), __op<_Pred>{__pred},… 135 struct __op { struct 149 …return ranges::__find_last_impl(std::move(__first), std::move(__last), __op<_Pred>{__pred}, __proj… 157 …return ranges::__find_last_impl(ranges::begin(__range), ranges::end(__range), __op<_Pred>{__pred},…
|
H A D | transform.h | 22 transform(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _UnaryOperation __op) { 24 *__result = __op(*__first); in transform() 23 transform(_InputIterator __first,_InputIterator __last,_OutputIterator __result,_UnaryOperation __op) transform() argument
|
H A D | pstl.h | 614 _UnaryOperation __op) { in transform() argument 618 _ForwardOutIterator, decltype(__op(*__first)), "transform requires an OutputIterator"); in transform() 625 std::move(__op)); in transform() 641 _BinaryOperation __op) { in transform() argument 646 …_ForwardOutIterator, decltype(__op(*__first1, *__first2)), "transform requires an OutputIterator"); in transform() 654 std::move(__op)); in transform()
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | numeric_impl.h |
|
H A D | glue_numeric_impl.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/ |
H A D | serial.h | 101 …wardIterator __first, _ForwardIterator __last, _ForwardOutIterator __outit, _UnaryOperation&& __op) 104 … std::move(__first), std::move(__last), std::move(__outit), std::forward<_UnaryOperation>(__op)); 121 _BinaryOperation&& __op) const noexcept { 127 std::forward<_BinaryOperation>(__op));
|
H A D | default.h | 376 …& __policy, _ForwardIterator __first, _ForwardIterator __last, _Tp __init, _BinaryOperation&& __op) 384 std::forward<_BinaryOperation>(__op),
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | binder2nd.h | 46 bind2nd(const _Operation& __op, const _Tp& __x) { in bind2nd() argument 47 return binder2nd<_Operation>(__op, __x); in bind2nd()
|
H A D | binder1st.h | 46 bind1st(const _Operation& __op, const _Tp& __x) { in bind1st() argument 47 return binder1st<_Operation>(__op, __x); in bind1st()
|
/freebsd/sys/compat/linuxkpi/common/include/asm/ |
H A D | atomic.h | 270 __typeof(p) __op = (__typeof((p)))(op); \ 271 __typeof(*(p)) __o = *__op; \ 274 *__op = __p; \
|
/freebsd/contrib/llvm-project/libcxx/include/__numeric/ |
H A D | pstl.h | 45 …& __policy, _ForwardIterator __first, _ForwardIterator __last, _Tp __init, _BinaryOperation __op) { in reduce() argument 53 std::move(__op)); in reduce()
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | formatter_output.h | 280 _UnaryOperation __op) -> decltype(__out_it) { 285 return __formatter::__transform(__first, __last, std::move(__out_it), __op); 289 …t_it = __formatter::__transform(__first, __last, std::move(__out_it), __op);
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | ostreambuf_iterator.h | 67 ostreambuf_iterator<_Ch, _Tr> __s, const _Ch* __ob, const _Ch* __op, const _Ch* __oe, ios_base& __iob, _Ch __fl);
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | locale | 1074 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… 1076 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… 1081 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… 1114 __op = __oe; 1116 __op = __ob + (__np - __nb); 1121 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… 1172 __op = __oe; 1174 __op = __ob + (__np - __nb); 1250 …_OutputIterator __s, const _CharT* __ob, const _CharT* __op, const _CharT* __oe, ios_base& __iob, … 1257 for (; __ob < __op; ++__ob, ++__s) [all …]
|
H A D | valarray | 439 _LIBCPP_HIDE_FROM_ABI _UnaryOp(const _Op& __op, const _A0& __a0) : __op_(__op), __a0_(__a0) {} 455 _LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const _A0& __a0, const _A1& __a1) 456 : __op_(__op), __a0_(__a0), __a1_(__a1) {} 972 …_LIBCPP_HIDE_FROM_ABI _UnaryOp(const _Op& __op, const valarray<_Tp>& __a0) : __op_(__op), __a0_(__… 988 _LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const valarray<_Tp>& __a0, const _A1& __a1) 989 : __op_(__op), __a0_(__a0), __a1_(__a1) {} 1005 _LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const _A0& __a0, const valarray<_Tp>& __a1) 1006 : __op_(__op), __a0_(__a0), __a1_(__a1) {} 1022 …_LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const valarray<_Tp>& __a0, const valarray<_Tp>& _… 1023 : __op_(__op), __a0_(__a0), __a1_(__a1) {}
|
H A D | string | 1309 _LIBCPP_HIDE_FROM_ABI constexpr void resize_and_overwrite(size_type __n, _Op __op) { 1311 __erase_to_end(std::move(__op)(data(), _LIBCPP_AUTO_CAST(__n)));
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | fw.c | 652 #define __DEF_FW_FEAT_COND(__cond, __op) \ 655 return suit_ver_code __op comp_ver_code; \ 412 __DEF_FW_FEAT_COND(__cond,__op) global() argument
|