Searched refs:bit_xor (Results 1 - 7 of 7) sorted by relevance
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ir_builder.h | 173 ir_expression *bit_xor(operand a, operand b);
|
H A D | ir_builder.cpp | 413 bit_xor(operand a, operand b) in bit_xor() function
|
/third_party/skia/src/core/ |
H A D | SkVM.h | 457 M(bit_and) M(bit_or) M(bit_xor) M(bit_clear) \ 885 I32 bit_xor(I32, I32); in abs() 886 I32 bit_xor(I32 x, int y) { return bit_xor(x, splat(y)); } in abs() function in skvm::Builder 887 I32 bit_xor(int x, I32 y) { return bit_xor(splat(x), y); } in abs() function in skvm::Builder 1273 SI I32 operator^(I32 x, I32 y) { return x->bit_xor(x,y); } in operator ^() 1274 SI I32 operator^(I32 x, int y) { return x->bit_xor(x,y); } in operator ^() 1275 SI I32 operator^(int x, I32 y) { return y->bit_xor(x,y); } in operator ^()
|
H A 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; 3905 case Op::bit_xor: 4192 case Op::bit_xor : a->eor16b(dst(x,y), r(x), r(y)); break;
|
/third_party/skia/src/opts/ |
H A D | SkVM_opts.h | 294 CASE(Op::bit_xor ): r[d].i32 = r[x].i32 ^ r[y].i32; break;
|
/third_party/skia/tests/ |
H A D | SkVMTest.cpp | 302 x = b.bit_xor (x, b.splat(0xfe)); // 0x3e
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 19706 struct bit_xor; 19733 struct bit_xor : public binary_function<_Tp, _Tp, _Tp> 19780 struct bit_xor<void> [all...] |
Completed in 39 milliseconds