Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/function.objects/bitwise.operations/
Dbit_and.pass.cpp20 typedef std::bit_and<int> F; in main()
31 typedef std::bit_and<> F2; in main()
53 constexpr int foo = std::bit_and<int> () (0x58D3, 0xEA95); in main()
56 constexpr int bar = std::bit_and<> () (0x58D3L, 0xEA95); in main()
Dtransparent.pass.cpp28 static_assert ( !is_transparent<std::bit_and<int>>::value, "" ); in main()
29 static_assert ( !is_transparent<std::bit_and<std::string>>::value, "" ); in main()
30 static_assert ( is_transparent<std::bit_and<void>>::value, "" ); in main()
31 static_assert ( is_transparent<std::bit_and<>>::value, "" ); in main()
/external/opencv3/modules/cudaarithm/src/cuda/
Dbitwise_scalar.cu135 …ar<uchar, bitScalarOp<bit_and, uchar> >::call , 0, NppBitwiseC<CV_8U , 3, nppiAndC_8u_C3R >::call… in bitScalar()
136 …ar<uchar, bitScalarOp<bit_and, uchar> >::call , 0, NppBitwiseC<CV_8U , 3, nppiAndC_8u_C3R >::call… in bitScalar()
137 …{BitScalar<ushort, bitScalarOp<bit_and, ushort> >::call, 0, NppBitwiseC<CV_16U, 3, nppiAndC_16u_C3… in bitScalar()
138 …{BitScalar<ushort, bitScalarOp<bit_and, ushort> >::call, 0, NppBitwiseC<CV_16U, 3, nppiAndC_16u_C3… in bitScalar()
139 …{BitScalar<uint, bitScalarOp<bit_and, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiAndC_32s_C3… in bitScalar()
140 …{BitScalar<uint, bitScalarOp<bit_and, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiAndC_32s_C3… in bitScalar()
Dbitwise_mat.cu158 bitMatOp<bit_and, uint>, in bitMat()
164 bitMatOp<bit_and, ushort>, in bitMat()
170 bitMatOp<bit_and, uchar>, in bitMat()
/external/v8/test/unittests/compiler/
Dtyper-unittest.cc229 int32_t bit_and(int32_t x, int32_t y) { return x & y; } in bit_and() function
288 bit_and); in TEST_F()
290 bit_and); in TEST_F()
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dfunctional.hpp231 template <typename T> struct bit_and : binary_function<T, T, T> struct
238 __host__ __device__ __forceinline__ bit_and() {} in bit_and() function
239 __host__ __device__ __forceinline__ bit_and(const bit_and&) {} in bit_and() function
/external/opencv3/modules/cudev/include/opencv2/cudev/expr/
Dbinary_op.hpp228 CV_CUDEV_EXPR_BINOP_INST(&, bit_and)
/external/libcxx/include/
Dvalarray3914 __val_expr<_BinaryOp<bit_and<typename _Expr1::value_type>, _Expr1, _Expr2> >
3919 typedef _BinaryOp<bit_and<value_type>, _Expr1, _Expr2> _Op;
3920 return __val_expr<_Op>(_Op(bit_and<value_type>(), __x, __y));
3928 __val_expr<_BinaryOp<bit_and<typename _Expr::value_type>,
3934 typedef _BinaryOp<bit_and<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3935 return __val_expr<_Op>(_Op(bit_and<value_type>(),
3944 __val_expr<_BinaryOp<bit_and<typename _Expr::value_type>,
3950 typedef _BinaryOp<bit_and<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3951 return __val_expr<_Op>(_Op(bit_and<value_type>(),
Dfunctional162 struct bit_and : unary_function<T, bool>
873 struct _LIBCPP_TYPE_VIS_ONLY bit_and : binary_function<_Tp, _Tp, _Tp>
882 struct _LIBCPP_TYPE_VIS_ONLY bit_and<void>
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/
Dfunctional.hpp225 template <typename T> struct bit_and : binary_function<T, T, T> struct