Searched refs:store8 (Results 1 – 7 of 7) sorted by relevance
/third_party/node/deps/v8/third_party/wasm-api/example/ |
D | memory.wat | 7 (i32.store8 (local.get 0) (local.get 1))
|
/third_party/skia/src/opts/ |
D | SkVM_opts.h | 119 STRIDE_1(Op::store8 ): memcpy(args[immA], &r[x].i32, 1); break; in interpret_skvm() 125 STRIDE_K(Op::store8 ): skvx::cast<uint8_t> (r[x].i32).store(args[immA]); break; in interpret_skvm()
|
/third_party/skia/src/core/ |
D | SkVM.h | 438 M(store8) M(store16) M(store32) M(store64) M(store128) \ 471 return Op::store8 <= op && op <= Op::load128; in touches_varying_memory() 474 return Op::store8 <= op && op <= Op::index; in is_always_varying() 643 void store8 (Ptr ptr, I32 val); 1192 SI void store8 (Ptr ptr, I32 val) { val->store8 (ptr, val); } in store8() function
|
D | SkVM.cpp | 303 case Op::store8: write(o, op, Ptr{immA}, V{x} ); break; in write_one_instruction() 423 case Op::store8: write(o, op, Ptr{immA}, R{x} ); break; in dump() 704 void Builder::store8 (Ptr ptr, I32 val) { (void)push(Op::store8 , val.id,NA,NA,NA, ptr.ix); } in store8() function in skvm::Builder 1409 case 1: store8 (ptr, pack32(f,c)); break; in store() 2749 case Op::store8: t = I8 ; goto store; in setupLLVM() 3622 case Op::store8: in jit() 4000 case Op::store8: a->xtns2h(dst(x), r(x)); in jit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrMemory.td | 266 defm STORE8_I32 : WebAssemblyStore<I32, "i32.store8", 0x3a>; 268 defm STORE8_I64 : WebAssemblyStore<I64, "i64.store8", 0x3c>;
|
D | WebAssemblyInstrAtomics.td | 318 defm ATOMIC_STORE8_I32 : AtomicStore<I32, "i32.atomic.store8", 0x19>; 320 defm ATOMIC_STORE8_I64 : AtomicStore<I64, "i64.atomic.store8", 0x1b>;
|
/third_party/skia/tests/ |
D | SkVMTest.cpp | 198 b.store8 (buf8 , b.gather8 (uniforms,0, b.bit_and(x, b.splat(31)))); in DEF_TEST() 256 b.store8 (buf8 , b.gather8 (uniforms,0, x)); in DEF_TEST()
|