Searched refs:bit_xor (Results 1 – 6 of 6) sorted by relevance
/external/libcxx/test/std/utilities/function.objects/bitwise.operations/ |
D | bit_xor.pass.cpp | 23 typedef std::bit_xor<int> F; in main() 36 typedef std::bit_xor<> F2; in main() 58 constexpr int foo = std::bit_xor<int> () (0x58D3, 0xEA95); in main() 61 constexpr int bar = std::bit_xor<> () (0x58D3L, 0xEA95); in main()
|
D | transparent.pass.cpp | 37 static_assert ( !is_transparent<std::bit_xor<int>>::value, "" ); in main() 38 static_assert ( !is_transparent<std::bit_xor<std::string>>::value, "" ); in main() 39 static_assert ( is_transparent<std::bit_xor<void>>::value, "" ); in main() 40 static_assert ( is_transparent<std::bit_xor<>>::value, "" ); in main()
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_builder.h | 171 ir_expression *bit_xor(operand a, operand b);
|
D | ir_builder.cpp | 420 bit_xor(operand a, operand b) in bit_xor() function
|
/external/libcxx/include/ |
D | valarray | 3955 __val_expr<_BinaryOp<bit_xor<typename _Expr1::value_type>, _Expr1, _Expr2> > 3960 typedef _BinaryOp<bit_xor<value_type>, _Expr1, _Expr2> _Op; 3961 return __val_expr<_Op>(_Op(bit_xor<value_type>(), __x, __y)); 3969 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>, 3975 typedef _BinaryOp<bit_xor<value_type>, _Expr, __scalar_expr<value_type> > _Op; 3976 return __val_expr<_Op>(_Op(bit_xor<value_type>(), 3985 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>, 3991 typedef _BinaryOp<bit_xor<value_type>, __scalar_expr<value_type>, _Expr> _Op; 3992 return __val_expr<_Op>(_Op(bit_xor<value_type>(),
|
D | functional | 174 struct bit_xor : unary_function<T, bool> 180 struct bit_xor : unary_function<T, bool> 938 struct _LIBCPP_TEMPLATE_VIS bit_xor : binary_function<_Tp, _Tp, _Tp> 947 struct _LIBCPP_TEMPLATE_VIS bit_xor<void>
|