Home
last modified time | relevance | path

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

12

/third_party/skia/tests/sksl/runtime/
DSwitchWithLoops.skvm15 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 …]
DLoopInt.skvm105 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 …]
DLoopFloat.skvm114 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 …]
DSwitch.skvm18 16 r15 = bit_xor r9 r8
28 26 r10 = bit_xor r9 r10
DSwitchWithFallthrough.skvm15 13 r12 = bit_xor r9 r11
26 24 r13 = bit_xor r9 r8
DConversionConstructors.skvm13 11 r3 = bit_xor r4 r3
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/
Dids.hpp43 bit_xor, enumerator
120 bit_xor = binary_op<op::bit_xor>::value, enumerator
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/
Dids.hpp44 bit_xor, enumerator
121 bit_xor = binary_op<op::bit_xor>::value, enumerator
Dlexer_def.hpp45 ("\\^", token_ids::bit_xor) in conjure_tokens()
/third_party/skia/resources/sksl/runtime_errors/
DIllegalOperators.rts15 int bit_xor (int x) { return x ^ 1; }
/third_party/boost/libs/config/test/
Dboost_no_cxx_hdr_functional.ipp27 std::bit_xor<int> b3;
/third_party/boost/libs/compute/include/boost/compute/functional/
Doperator.hpp94 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(bit_xor, "^", T, T)
/third_party/boost/boost/compute/functional/
Doperator.hpp94 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(bit_xor, "^", T, T)
/third_party/boost/boost/random/detail/
Dgray_coded_qrng.hpp152 std::bit_xor<result_type>()); in update_quasi()
/third_party/boost/libs/compute/test/
Dtest_valarray.cpp161 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/
Dvalarray.hpp318 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/
Dvalarray.hpp318 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/
DSkVM.h264 bit_xor, enumerator
392 I32 bit_xor (I32 x, I32 y);
DSkVM.cpp194 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/
Dir_builder.h175 ir_expression *bit_xor(operand a, operand b);
Dir_builder.cpp426 bit_xor(operand a, operand b) in bit_xor() function
/third_party/skia/src/core/
DSkVM.h457 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/
DSkVM_opts.h294 CASE(Op::bit_xor ): r[d].i32 = r[x].i32 ^ r[y].i32; break; in interpret_skvm()
/third_party/flutter/skia/tests/
DSkVMTest.cpp153 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/
Dbitwise.hpp225 struct bit_xor struct
256 bitwise_op(result, o, bit_xor(), in eval_bitwise_xor()

12