Home
last modified time | relevance | path

Searched refs:__op (Results 1 – 8 of 8) sorted by relevance

/external/libcxx/include/
Datomic926 _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
927 {return __c11_atomic_fetch_add(&this->__a_, __op, __m);}
929 _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
930 {return __c11_atomic_fetch_add(&this->__a_, __op, __m);}
932 _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
933 {return __c11_atomic_fetch_sub(&this->__a_, __op, __m);}
935 _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
936 {return __c11_atomic_fetch_sub(&this->__a_, __op, __m);}
938 _Tp fetch_and(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
939 {return __c11_atomic_fetch_and(&this->__a_, __op, __m);}
[all …]
Dlocale1222 _CharT* __ob, _CharT*& __op, _CharT*& __oe,
1225 _CharT* __ob, _CharT*& __op, _CharT*& __oe,
1232 _CharT* __ob, _CharT*& __op, _CharT*& __oe,
1275 __op = __oe;
1277 __op = __ob + (__np - __nb);
1283 _CharT* __ob, _CharT*& __op, _CharT*& __oe,
1348 __op = __oe;
1350 __op = __ob + (__np - __nb);
1457 const _CharT* __ob, const _CharT* __op, const _CharT* __oe,
1466 for (;__ob < __op; ++__ob, ++__s)
[all …]
Dvalarray422 _UnaryOp(const _Op& __op, const _A0& __a0) : __op_(__op), __a0_(__a0) {}
442 _BinaryOp(const _Op& __op, const _A0& __a0, const _A1& __a1)
443 : __op_(__op), __a0_(__a0), __a1_(__a1) {}
1025 _UnaryOp(const _Op& __op, const valarray<_Tp>& __a0) : __op_(__op), __a0_(__a0) {}
1045 _BinaryOp(const _Op& __op, const valarray<_Tp>& __a0, const _A1& __a1)
1046 : __op_(__op), __a0_(__a0), __a1_(__a1) {}
1066 _BinaryOp(const _Op& __op, const _A0& __a0, const valarray<_Tp>& __a1)
1067 : __op_(__op), __a0_(__a0), __a1_(__a1) {}
1087 _BinaryOp(const _Op& __op, const valarray<_Tp>& __a0, const valarray<_Tp>& __a1)
1088 : __op_(__op), __a0_(__a0), __a1_(__a1) {}
Dfunctional1035 bind1st(const __Operation& __op, const _Tp& __x)
1036 {return binder1st<__Operation>(__op, __x);}
1061 bind2nd(const __Operation& __op, const _Tp& __x)
1062 {return binder2nd<__Operation>(__op, __x);}
Diterator931 const _Ch* __ob, const _Ch* __op, const _Ch* __oe,
Dalgorithm1965 …form(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _UnaryOperation __op)
1968 *__result = __op(*__first);
/external/llvm/test/CodeGen/Hexagon/
Dearly-if-conversion-bug1.ll33 …rIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_(i32 %__s.coerce, i8* %__ob, i8* %__op, i8* %__oe, %"class…
74 %__op.addr = alloca i8*, align 4
89 store i8* %__op, i8** %__op.addr, align 4
134 %11 = load i8*, i8** %__op.addr, align 4
330 %59 = load i8*, i8** %__op.addr, align 4
342 %62 = load i8*, i8** %__op.addr, align 4
/external/blktrace/btt/
Doutput.c857 struct __op { struct
863 struct __op *opp = arg; in __output_procs() argument
870 struct __op op = { .ofp = ofp, .base = base }; in output_procs()