Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/function.objects/bitwise.operations/
Dbit_xor.pass.cpp23 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()
Dtransparent.pass.cpp37 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/pdfium/core/fxcodec/fax/
Dfaxmodule.cpp52 const uint8_t bit_xor = bit ? 0x00 : 0xff; in FindBit() local
56 uint8_t data = (data_buf[byte_pos] ^ bit_xor) & (0xff >> bit_offset); in FindBit()
81 uint8_t data = data_buf[byte_pos] ^ bit_xor; in FindBit()
/external/mesa3d/src/compiler/glsl/
Dir_builder.h175 ir_expression *bit_xor(operand a, operand b);
Dir_builder.cpp426 bit_xor(operand a, operand b) in bit_xor() function
/external/skia/src/core/
DSkVM.h319 M(bit_xor) \
509 I32 bit_xor (I32 x, I32 y);
DSkVM.cpp215 case Op::bit_xor : write(o, V{id}, "=", op, V{x}, V{y} ); break; in dump()
333 case Op::bit_xor : write(o, R{d}, "=", op, R{x}, R{y} ); break; in dump()
370 case Op::bit_xor: imm_op = Op::bit_xor_imm; goto try_imm_x_and_y; in optimize()
785 I32 Builder::bit_xor(I32 x, I32 y) { in bit_xor() function in skvm::Builder
790 return {this->push(Op::bit_xor, x.id, y.id)}; in bit_xor()
1857 CASE(Op::bit_xor ): r(d).i32 = r(x).i32 ^ r(y).i32; break; in interpret()
2413 case Op::bit_xor : a->vpxor (dst(), r[x], r[y]); break; in jit()
2524 case Op::bit_xor : a->eor16b(dst(), r[x], r[y]); break; in jit()
DSkVMBlitter.cpp357 Y = bit_xor(dx,dy); in Builder()
/external/libcxx/include/
Dvalarray4013 __val_expr<_BinaryOp<bit_xor<typename _Expr1::value_type>, _Expr1, _Expr2> >
4018 typedef _BinaryOp<bit_xor<value_type>, _Expr1, _Expr2> _Op;
4019 return __val_expr<_Op>(_Op(bit_xor<value_type>(), __x, __y));
4027 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>,
4033 typedef _BinaryOp<bit_xor<value_type>, _Expr, __scalar_expr<value_type> > _Op;
4034 return __val_expr<_Op>(_Op(bit_xor<value_type>(),
4043 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>,
4049 typedef _BinaryOp<bit_xor<value_type>, __scalar_expr<value_type>, _Expr> _Op;
4050 return __val_expr<_Op>(_Op(bit_xor<value_type>(),
Dfunctional179 struct bit_xor : unary_function<T, bool>
185 struct bit_xor : unary_function<T, bool>
946 struct _LIBCPP_TEMPLATE_VIS bit_xor : binary_function<_Tp, _Tp, _Tp>
955 struct _LIBCPP_TEMPLATE_VIS bit_xor<void>
/external/libcxx/include/experimental/
Dsimd169 typename V::value_type reduce(const const_where_expression<M, V>& x, bit_xor<> binary_op);
1264 bit_xor<typename _SimdType::value_type> binary_op);
/external/skia/tests/
DSkVMTest.cpp431 x = b.bit_xor (x, b.splat(0xfe)); // 0x3e in DEF_TEST()