Searched refs:__op (Results 1 - 14 of 14) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/include/__atomic/
H A Datomic_base.h152 _LIBCPP_HIDE_FROM_ABI _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT {
153 return std::__cxx_atomic_fetch_add(std::addressof(this->__a_), __op, __m);
155 _LIBCPP_HIDE_FROM_ABI _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT {
156 return std::__cxx_atomic_fetch_add(std::addressof(this->__a_), __op, __m);
158 _LIBCPP_HIDE_FROM_ABI _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT {
159 return std::__cxx_atomic_fetch_sub(std::addressof(this->__a_), __op, __m);
161 _LIBCPP_HIDE_FROM_ABI _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT {
162 return std::__cxx_atomic_fetch_sub(std::addressof(this->__a_), __op, __m);
164 _LIBCPP_HIDE_FROM_ABI _Tp fetch_and(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT {
165 return std::__cxx_atomic_fetch_and(std::addressof(this->__a_), __op, __
[all...]
H A Datomic.h83 _LIBCPP_HIDE_FROM_ABI _Tp* fetch_add(ptrdiff_t __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT {
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) _NOEXCEPT {
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) volatile _NOEXCEPT {
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) _NOEXCEPT {
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)
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/pstl_backends/cpu_backends/
H A Dtransform.h48 _UnaryOperation __op) {
53 __first, __last, [__op, __first, __result](_ForwardIterator __brick_first, _ForwardIterator __brick_last) {
55 __cpu_backend_tag{}, __brick_first, __brick_last, __result + (__brick_first - __first), __op);
68 __out_value = __op(__in_value);
71 return std::transform(__first, __last, __result, __op);
95 _BinaryOperation __op) {
103 [__op, __first1, __first2, __result](_ForwardIterator1 __brick_first, _ForwardIterator1 __brick_last) {
110 __op);
126 __iter_reference<_ForwardOutIterator> __out_value) { __out_value = __op(__in1, __in2); });
128 return std::transform(__first1, __last1, __first2, __result, __op);
43 __pstl_transform( __cpu_backend_tag, _ForwardIterator __first, _ForwardIterator __last, _ForwardOutIterator __result, _UnaryOperation __op) argument
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Dpstl_transform.h43 _UnaryOperation&& __op) noexcept {
46 _Backend{}, std::move(__first), std::move(__last), std::move(__result), std::move(__op));
60 _UnaryOperation __op) {
63 _LIBCPP_REQUIRE_CPP17_OUTPUT_ITERATOR(_ForwardOutIterator, decltype(__op(*__first)));
64 auto __res = std::__transform(__policy, std::move(__first), std::move(__last), std::move(__result), std::move(__op));
83 _BinaryOperation&& __op) noexcept {
86 _Backend{}, std::move(__first1), std::move(__last1), std::move(__first2), std::move(__result), std::move(__op));
102 _BinaryOperation __op) {
106 _LIBCPP_REQUIRE_CPP17_OUTPUT_ITERATOR(_ForwardOutIterator, decltype(__op(*__first1, *__first2)));
108 __policy, std::move(__first1), std::move(__last1), std::move(__first2), std::move(__result), std::move(__op));
55 transform( _ExecutionPolicy&& __policy, _ForwardIterator __first, _ForwardIterator __last, _ForwardOutIterator __result, _UnaryOperation __op) argument
96 transform( _ExecutionPolicy&& __policy, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _ForwardOutIterator __result, _BinaryOperation __op) argument
[all...]
H A Dtransform.h22 transform(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _UnaryOperation __op) { argument
24 *__result = __op(*__first);
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_texture_intrinsics.h21 #define __nv_tex_surf_handler(__op, __ptr, ...) \
23 ::__cuda_tex::__Tag<::__cuda_tex::__tex_op_hash(__op)>>(__ptr, \
140 #define __ID(__op) __Tag<__tex_op_hash(__op)>
143 #define __IDV(__op, __variant) \
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, __arg
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__functional/
H A Dbinder2nd.h46 bind2nd(const _Operation& __op, const _Tp& __x) { argument
47 return binder2nd<_Operation>(__op, __x);
H A Dbinder1st.h46 bind1st(const _Operation& __op, const _Tp& __x) { argument
47 return binder1st<_Operation>(__op, __x);
/freebsd-current/contrib/llvm-project/libcxx/include/__numeric/
H A Dpstl_reduce.h44 _BinaryOperation&& __op = {}) noexcept {
54 std::move(__op));
68 _BinaryOperation __op = {}) {
69 auto __res = std::__reduce(__policy, std::move(__first), std::move(__last), std::move(__init), std::move(__op));
/freebsd-current/contrib/llvm-project/libcxx/include/__iterator/
H A Dostreambuf_iterator.h67 ostreambuf_iterator<_Ch, _Tr> __s, const _Ch* __ob, const _Ch* __op, const _Ch* __oe, ios_base& __iob, _Ch __fl);
/freebsd-current/sys/compat/linuxkpi/common/include/asm/
H A Datomic.h270 __typeof(p) __op = (__typeof((p)))(op); \
271 __typeof(*(p)) __o = *__op; \
274 *__op = __p; \
/freebsd-current/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_output.h278 _UnaryOperation __op) -> decltype(__out_it) {
283 return __formatter::__transform(__first, __last, std::move(__out_it), __op);
287 __out_it = __formatter::__transform(__first, __last, std::move(__out_it), __op);
/freebsd-current/usr.sbin/bhyve/
H A Dsnapshot.c1471 const char *__op; local
1474 __op = "save";
1476 __op = "restore";
1478 __op = "unknown";
1481 __func__, __op, bufname);
/freebsd-current/sys/contrib/dev/rtw89/
H A Dfw.c412 #define __DEF_FW_FEAT_COND(__cond, __op) \
415 return suit_ver_code __op comp_ver_code; \

Completed in 255 milliseconds