/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/skia/resources/sksl/runtime_errors/ |
D | IllegalOperators.rts | 15 int bit_xor (int x) { return x ^ 1; }
|
/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 | 173 ir_expression *bit_xor(operand a, operand b);
|
D | ir_builder.cpp | 413 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); }
|
D | SkVM.cpp | 359 case Op::bit_xor : write(o, V{id}, "=", op, V{x}, V{y}); break; in write_one_instruction() 477 case Op::bit_xor : write(o, R{d}, "=", op, R{x}, R{y}); break; in dump() 1086 I32 Builder::bit_xor(I32 x, I32 y) { in bit_xor() function in skvm::Builder 1091 return {this, this->push(Op::bit_xor, x.id, y.id)}; in bit_xor() 2761 case Op::bit_xor: vals[i] = b->CreateXor(vals[x], vals[y]); break; in setupLLVM() 3905 case Op::bit_xor: in jit() 4192 case Op::bit_xor : a->eor16b(dst(x,y), r(x), r(y)); break; in jit()
|
/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/skia/tests/ |
D | SkVMTest.cpp | 302 x = b.bit_xor (x, b.splat(0xfe)); // 0x3e in DEF_TEST()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 19706 struct bit_xor; 19733 struct bit_xor : public binary_function<_Tp, _Tp, _Tp> struct 19780 struct bit_xor<void> struct
|