/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/llvm-project/libcxx/test/std/utilities/function.objects/bitwise.operations/ |
D | bit_xor.pass.cpp | 22 typedef std::bit_xor<int> F; in main() 35 typedef std::bit_xor<> F2; in main() 57 constexpr int foo = std::bit_xor<int> () (0x58D3, 0xEA95); in main() 60 constexpr int bar = std::bit_xor<> () (0x58D3L, 0xEA95); in main()
|
D | transparent.pass.cpp | 38 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/skia/resources/sksl/runtime_errors/ |
D | IllegalOperators.rts | 15 int bit_xor (int x) { return x ^ 1; }
|
/external/skia/tests/sksl/runtime/ |
D | ConversionConstructors.skvm | 13 11 r3 = bit_xor r4 r3
|
/external/pdfium/core/fxcodec/fax/ |
D | faxmodule.cpp | 52 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/ |
D | ir_builder.h | 175 ir_expression *bit_xor(operand a, operand b);
|
D | ir_builder.cpp | 426 bit_xor(operand a, operand b) in bit_xor() function
|
/external/skia/src/core/ |
D | SkVM.h | 455 M(bit_and) M(bit_or) M(bit_xor) M(bit_clear) \ 1212 SI I32 operator^(I32 x, I32 y) { return x->bit_xor(x,y); } 1213 SI I32 operator^(I32 x, int y) { return x->bit_xor(x,y); } 1214 SI I32 operator^(int x, I32 y) { return y->bit_xor(x,y); }
|
D | SkVM.cpp | 295 case Op::bit_xor : write(o, V{id}, "=", op, V{x}, V{y}); break; in write_one_instruction() 406 case Op::bit_xor : write(o, R{d}, "=", op, R{x}, R{y}); break; in dump() 956 I32 Builder::bit_xor(I32 x, I32 y) { in bit_xor() function in skvm::Builder 961 return {this, this->push(Op::bit_xor, x.id, y.id)}; in bit_xor() 2572 case Op::bit_xor: vals[i] = b->CreateXor(vals[x], vals[y]); break; in setupLLVM() 3687 case Op::bit_xor: in jit() 3962 case Op::bit_xor : a->eor16b(dst(x,y), r(x), r(y)); break; in jit()
|
/external/skia/src/opts/ |
D | SkVM_opts.h | 252 CASE(Op::bit_xor ): r[d].i32 = r[x].i32 ^ r[y].i32; break; in interpret_skvm()
|
/external/llvm-project/libcxx/include/ |
D | valarray | 3991 __val_expr<_BinaryOp<bit_xor<typename _Expr1::value_type>, _Expr1, _Expr2> > 3996 typedef _BinaryOp<bit_xor<value_type>, _Expr1, _Expr2> _Op; 3997 return __val_expr<_Op>(_Op(bit_xor<value_type>(), __x, __y)); 4005 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>, 4011 typedef _BinaryOp<bit_xor<value_type>, _Expr, __scalar_expr<value_type> > _Op; 4012 return __val_expr<_Op>(_Op(bit_xor<value_type>(), 4021 __val_expr<_BinaryOp<bit_xor<typename _Expr::value_type>, 4027 typedef _BinaryOp<bit_xor<value_type>, __scalar_expr<value_type>, _Expr> _Op; 4028 return __val_expr<_Op>(_Op(bit_xor<value_type>(),
|
D | functional | 178 struct bit_xor : unary_function<T, bool> 184 struct bit_xor : unary_function<T, bool> 957 struct _LIBCPP_TEMPLATE_VIS bit_xor : binary_function<_Tp, _Tp, _Tp> 966 struct _LIBCPP_TEMPLATE_VIS bit_xor<void>
|
/external/libcxx/include/ |
D | valarray | 4013 __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>(),
|
D | functional | 179 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/ |
D | simd | 169 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/llvm-project/libcxx/include/experimental/ |
D | simd | 168 typename V::value_type reduce(const const_where_expression<M, V>& x, bit_xor<> binary_op); 1266 bit_xor<typename _SimdType::value_type> binary_op);
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | StdSymbolMap.inc | 172 SYMBOL(bit_xor, std::, <functional>)
|
/external/skia/tests/ |
D | SkVMTest.cpp | 302 x = b.bit_xor (x, b.splat(0xfe)); // 0x3e in DEF_TEST()
|