Home
last modified time | relevance | path

Searched refs:bit_xor (Results 1 – 10 of 10) sorted by relevance

/external/libcxx/test/std/utilities/function.objects/bitwise.operations/
Dbit_xor.pass.cpp21 typedef std::bit_xor<int> F; in main()
34 typedef std::bit_xor<> F2; in main()
56 constexpr int foo = std::bit_xor<int> () (0x58D3, 0xEA95); in main()
59 constexpr int bar = std::bit_xor<> () (0x58D3L, 0xEA95); in main()
Dtransparent.pass.cpp38 static_assert ( !is_transparent<std::bit_xor<int>>::value, "" ); in main()
39 static_assert ( !is_transparent<std::bit_xor<std::string>>::value, "" ); in main()
40 static_assert ( is_transparent<std::bit_xor<void>>::value, "" ); in main()
41 static_assert ( is_transparent<std::bit_xor<>>::value, "" ); in main()
/external/opencv3/modules/cudaarithm/src/cuda/
Dbitwise_scalar.cu151 …ar<uchar, bitScalarOp<bit_xor, uchar> >::call , 0, NppBitwiseC<CV_8U , 3, nppiXorC_8u_C3R >::call… in bitScalar()
152 …ar<uchar, bitScalarOp<bit_xor, uchar> >::call , 0, NppBitwiseC<CV_8U , 3, nppiXorC_8u_C3R >::call… in bitScalar()
153 …{BitScalar<ushort, bitScalarOp<bit_xor, ushort> >::call, 0, NppBitwiseC<CV_16U, 3, nppiXorC_16u_C3… in bitScalar()
154 …{BitScalar<ushort, bitScalarOp<bit_xor, ushort> >::call, 0, NppBitwiseC<CV_16U, 3, nppiXorC_16u_C3… in bitScalar()
155 …{BitScalar<uint, bitScalarOp<bit_xor, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiXorC_32s_C3… in bitScalar()
156 …{BitScalar<uint, bitScalarOp<bit_xor, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiXorC_32s_C3… in bitScalar()
Dbitwise_mat.cu160 bitMatOp<bit_xor, uint> in bitMat()
166 bitMatOp<bit_xor, ushort> in bitMat()
172 bitMatOp<bit_xor, uchar> in bitMat()
/external/v8/test/unittests/compiler/
Dtyper-unittest.cc230 int32_t bit_xor(int32_t x, int32_t y) { return x ^ y; } in bit_xor() function
296 bit_xor); in TEST_F()
298 bit_xor); in TEST_F()
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dfunctional.hpp253 template <typename T> struct bit_xor : binary_function<T, T, T> struct
260 __host__ __device__ __forceinline__ bit_xor() {} in bit_xor() function
261 __host__ __device__ __forceinline__ bit_xor(const bit_xor&) {} in bit_xor() function
/external/opencv3/modules/cudev/include/opencv2/cudev/expr/
Dbinary_op.hpp230 CV_CUDEV_EXPR_BINOP_INST(^, bit_xor)
/external/libcxx/include/
Dvalarray3868 __val_expr<_BinaryOp<bit_xor<typename _Expr1::value_type>, _Expr1, _Expr2> >
3873 typedef _BinaryOp<bit_xor<value_type>, _Expr1, _Expr2> _Op;
3874 return __val_expr<_Op>(_Op(bit_xor<value_type>(), __x, __y));
3882 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>,
3888 typedef _BinaryOp<bit_xor<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3889 return __val_expr<_Op>(_Op(bit_xor<value_type>(),
3898 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>,
3904 typedef _BinaryOp<bit_xor<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3905 return __val_expr<_Op>(_Op(bit_xor<value_type>(),
Dfunctional174 struct bit_xor : unary_function<T, bool>
180 struct bit_xor : unary_function<T, bool>
927 struct _LIBCPP_TYPE_VIS_ONLY bit_xor : binary_function<_Tp, _Tp, _Tp>
936 struct _LIBCPP_TYPE_VIS_ONLY bit_xor<void>
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/
Dfunctional.hpp243 template <typename T> struct bit_xor : binary_function<T, T, T> struct