/third_party/skia/tests/sksl/runtime/ |
D | SwitchWithLoops.skvm | 15 13 r12 = bit_xor r8 r9 21 19 r14 = bit_xor r8 r14 29 27 r13 = bit_xor r8 r13 36 34 r15 = bit_xor r8 r15 43 41 r14 = bit_xor r8 r14 50 48 r13 = bit_xor r8 r13 57 55 r15 = bit_xor r8 r15 64 62 r14 = bit_xor r8 r14 71 69 r13 = bit_xor r8 r13 78 76 r15 = bit_xor r8 r15 [all …]
|
D | LoopInt.skvm | 105 49 r25 = bit_xor r10 r24 114 58 r24 = bit_xor r10 r25 123 67 r25 = bit_xor r10 r24 132 76 r24 = bit_xor r10 r25 141 85 r25 = bit_xor r10 r24 150 94 r24 = bit_xor r10 r25 159 103 r25 = bit_xor r10 r24 168 112 r24 = bit_xor r10 r25 177 121 r25 = bit_xor r10 r24 186 130 r25 = bit_xor r10 r25 [all …]
|
D | LoopFloat.skvm | 114 56 r33 = bit_xor r10 r32 123 65 r32 = bit_xor r10 r33 132 74 r33 = bit_xor r10 r32 141 83 r32 = bit_xor r10 r33 150 92 r33 = bit_xor r10 r32 159 101 r32 = bit_xor r10 r33 168 110 r33 = bit_xor r10 r32 177 119 r32 = bit_xor r10 r33 186 128 r33 = bit_xor r10 r32 195 137 r33 = bit_xor r10 r33 [all …]
|
D | Switch.skvm | 18 16 r15 = bit_xor r9 r8 28 26 r10 = bit_xor r9 r10
|
D | SwitchWithFallthrough.skvm | 15 13 r12 = bit_xor r9 r11 26 24 r13 = bit_xor r9 r8
|
D | ConversionConstructors.skvm | 13 11 r3 = bit_xor r4 r3
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/ |
D | ids.hpp | 43 bit_xor, enumerator 120 bit_xor = binary_op<op::bit_xor>::value, enumerator
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/ |
D | ids.hpp | 44 bit_xor, enumerator 121 bit_xor = binary_op<op::bit_xor>::value, enumerator
|
D | lexer_def.hpp | 45 ("\\^", token_ids::bit_xor) in conjure_tokens()
|
/third_party/skia/resources/sksl/runtime_errors/ |
D | IllegalOperators.rts | 15 int bit_xor (int x) { return x ^ 1; }
|
/third_party/boost/libs/config/test/ |
D | boost_no_cxx_hdr_functional.ipp | 27 std::bit_xor<int> b3;
|
/third_party/boost/libs/compute/include/boost/compute/functional/ |
D | operator.hpp | 94 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(bit_xor, "^", T, T)
|
/third_party/boost/boost/compute/functional/ |
D | operator.hpp | 94 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(bit_xor, "^", T, T)
|
/third_party/boost/boost/random/detail/ |
D | gray_coded_qrng.hpp | 152 std::bit_xor<result_type>()); in update_quasi()
|
/third_party/boost/libs/compute/test/ |
D | test_valarray.cpp | 161 BOOST_COMPUTE_TEST_VALARRAY_COMPOUND_ASSIGNMENT_NO_FP(^, bit_xor) 301 BOOST_COMPUTE_TEST_VALARRAY_BINARY_OPERATOR_NO_FP(^, bit_xor)
|
/third_party/boost/boost/compute/container/ |
D | valarray.hpp | 318 BOOST_COMPUTE_DEFINE_VALARRAY_COMPOUND_ASSIGNMENT_NO_FP(^, bit_xor) 407 BOOST_COMPUTE_DEFINE_VALARRAY_BINARY_OPERATOR_NO_FP(^, bit_xor)
|
/third_party/boost/libs/compute/include/boost/compute/container/ |
D | valarray.hpp | 318 BOOST_COMPUTE_DEFINE_VALARRAY_COMPOUND_ASSIGNMENT_NO_FP(^, bit_xor) 407 BOOST_COMPUTE_DEFINE_VALARRAY_BINARY_OPERATOR_NO_FP(^, bit_xor)
|
/third_party/flutter/skia/src/core/ |
D | SkVM.h | 264 bit_xor, enumerator 392 I32 bit_xor (I32 x, I32 y);
|
D | SkVM.cpp | 194 I32 Builder::bit_xor (I32 x, I32 y) { return {this->push(Op::bit_xor , x.id, y.id)}; } in bit_xor() function in skvm::Builder 1035 CASE(Op::bit_xor ): r(d).i32 = r(x).i32 ^ r(y).i32; break; in eval() 1500 case Op::bit_xor : a->vpxor (dst(), r[x], r[y]); break; in jit() 1578 case Op::bit_xor : a->eor16b(dst(), r[x], r[y]); break; in jit()
|
/third_party/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
|
/third_party/skia/src/core/ |
D | SkVM.h | 457 M(bit_and) M(bit_or) M(bit_xor) M(bit_clear) \ 1273 SI I32 operator^(I32 x, I32 y) { return x->bit_xor(x,y); } 1274 SI I32 operator^(I32 x, int y) { return x->bit_xor(x,y); } 1275 SI I32 operator^(int x, I32 y) { return y->bit_xor(x,y); }
|
/third_party/skia/src/opts/ |
D | SkVM_opts.h | 294 CASE(Op::bit_xor ): r[d].i32 = r[x].i32 ^ r[y].i32; break; in interpret_skvm()
|
/third_party/flutter/skia/tests/ |
D | SkVMTest.cpp | 153 case Op::bit_xor : write(o, V{id}, "= bit_xor" , V{x}, V{y} ); break; in dump_builder() 257 case Op::bit_xor : write(o, R{d}, "= bit_xor" , R{x}, R{y} ); break; in dump_program() 568 x = b.bit_xor (x, b.splat(0xfe)); // 0x3e in DEF_TEST()
|
/third_party/boost/boost/multiprecision/cpp_int/ |
D | bitwise.hpp | 225 struct bit_xor struct 256 bitwise_op(result, o, bit_xor(), in eval_bitwise_xor()
|