/third_party/python/Modules/_blake2/impl/ |
H A D | blake2s-ref.c | 98 store32( &P->leaf_length, leaf_length ); in blake2s_param_set_leaf_length() 181 store32( &P->leaf_length, 0 ); in blake2s_init() 203 store32( &P->leaf_length, 0 ); in blake2s_init_key() 335 store32( buffer + sizeof( S->h[i] ) * i, S->h[i] ); in blake2s_final()
|
H A D | blake2b-ref.c | 105 store32( &P->leaf_length, leaf_length ); in blake2b_param_set_leaf_length() 187 store32( &P->leaf_length, 0 ); in blake2b_init() 210 store32( &P->leaf_length, 0 ); in blake2b_init_key()
|
H A D | blake2-impl.h | 65 static inline void store32( void *dst, uint32_t w ) in store32() function
|
H A D | blake2s.c | 375 store32( buffer + sizeof( S->h[i] ) * i, S->h[i] ); in blake2s_final()
|
/third_party/skia/tests/ |
H A D | SkVMTest.cpp | 62 b.store32(b.varying<int>(), b.splat(42)); in DEF_TEST() 81 b.store32(dst, b.load32(src)); in DEF_TEST() 102 b.store32(dst, b.load32(src)); in DEF_TEST() 116 b.store32(arg, in DEF_TEST() 144 b.store32(buf, b.gather32(uniforms,0, b.bit_and(x, b.splat(7)))); in DEF_TEST() 196 b.store32(buf32, b.gather32(uniforms,0, b.bit_and(x, b.splat( 7)))); in DEF_TEST() 254 b.store32(buf32, b.gather32(uniforms,0, x)); in DEF_TEST() 309 b.store32(ptr, x); 336 REPORTER_ASSERT(r, program[3].op == skvm::Op::store32); 389 b.store32( [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
H A D | blake2s_prov.c | 84 store32(P->leaf_length, 0); in ossl_blake2s_param_init() 315 store32(target + sizeof(c->h[i]) * i, c->h[i]); in ossl_blake2s_final()
|
H A D | blake2_impl.h | 58 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32() function
|
H A D | blake2b_prov.c | 89 store32(P->leaf_length, 0); in ossl_blake2b_param_init()
|
/third_party/openssl/providers/implementations/digests/ |
H A D | blake2s_prov.c | 84 store32(P->leaf_length, 0); in ossl_blake2s_param_init() 315 store32(target + sizeof(c->h[i]) * i, c->h[i]); in ossl_blake2s_final()
|
H A D | blake2_impl.h | 58 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32() function
|
H A D | blake2b_prov.c | 89 store32(P->leaf_length, 0); in ossl_blake2b_param_init()
|
/third_party/skia/src/opts/ |
H A D | SkVM_opts.h | 121 STRIDE_1(Op::store32): memcpy(args[immA], &r[x].i32, 4); break; 127 STRIDE_K(Op::store32): (r[x].i32).store(args[immA]); break;
|
/third_party/python/Modules/_blake2/ |
H A D | blake2s_impl.c | 160 store32(&(self->param.leaf_length), leaf_size); in py_blake2s_new_impl()
|
H A D | blake2b_impl.c | 160 store32(&(self->param.leaf_length), leaf_size); in py_blake2b_new_impl()
|
/third_party/skia/src/core/ |
H A D | SkVM.h | 438 M(store8) M(store16) M(store32) M(store64) M(store128) \ 645 void store32 (Ptr ptr, I32 val); 646 void storeF (Ptr ptr, F32 val) { store32(ptr, pun_to_I32(val)); } in storeF() 1194 SI void store32 (Ptr ptr, I32 val) { val->store32 (ptr, val); } in store32() function
|
H A D | SkVM.cpp | 305 case Op::store32: write(o, op, Ptr{immA}, V{x} ); break; in write_one_instruction() 425 case Op::store32: write(o, op, Ptr{immA}, R{x} ); break; in dump() 706 void Builder::store32(Ptr ptr, I32 val) { (void)push(Op::store32, val.id,NA,NA,NA, ptr.ix); } in store32() function in skvm::Builder 1411 case 4: store32(ptr, pack32(f,c)); break; in store() 2751 case Op::store32: t = I32; goto store; 3641 case Op::store32: if (scalar) { a->vmovd (A::Mem{arg[immA]}, (A::Xmm)r(x)); } 4011 case Op::store32: if (scalar) { a->strs(r(x), arg[immA]); }
|