Searched refs:store128 (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/src/core/ |
H A D | SkVM.h | 434 // Order matters a little: Ops <=store128 are treated as having side effects. 438 M(store8) M(store16) M(store32) M(store64) M(store128) \ 468 return op <= Op::store128; in has_side_effect() 583 Val x,y,z,w; // Enough arguments for Op::store128. 648 void store128(Ptr ptr, I32 x, I32 y, I32 z, I32 w); // *ptr = x|(y<<32)|(z<<64)|(w<<96) 1197 SI void store128(Ptr ptr, I32 x, I32 y, I32 z, I32 w) { x ->store128(ptr, x,y,z,w); } in store128() function
|
H A D | SkVM.cpp | 307 case Op::store128: write(o, op, Ptr{immA}, V{x},V{y},V{z},V{w}); break; in write_one_instruction() 427 case Op::store128: write(o, op, Ptr{immA}, R{x}, R{y}, R{z}, R{w}); break; in dump() 710 void Builder::store128(Ptr ptr, I32 x, I32 y, I32 z, I32 w) { in store128() function in skvm::Builder 711 (void)push(Op::store128, x.id,y.id,z.id,w.id, ptr.ix); in store128() 1421 store128(ptr, pun_to_I32(c.r), pun_to_I32(c.g), pun_to_I32(c.b), pun_to_I32(c.a)); in store() 3664 case Op::store128: { 4030 case Op::store128:
|
/third_party/skia/src/opts/ |
H A D | SkVM_opts.h | 190 CASE(Op::store128): {
|
Completed in 12 milliseconds