Searched refs:store64 (Results 1 - 12 of 12) sorted by relevance
/third_party/python/Modules/_blake2/impl/ |
H A D | blake2b-ref.c | 111 store64( &P->node_offset, node_offset ); in blake2b_param_set_node_offset() 188 store64( &P->node_offset, 0 ); in blake2b_init() 211 store64( &P->node_offset, 0 ); in blake2b_init_key() 345 store64( buffer + sizeof( S->h[i] ) * i, S->h[i] ); in blake2b_final()
|
H A D | blake2-impl.h | 78 static inline void store64( void *dst, uint64_t w ) in store64() function
|
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
H A D | blake2b_prov.c | 90 store64(P->node_offset, 0); in ossl_blake2b_param_init() 324 store64(target + sizeof(c->h[i]) * i, c->h[i]); in ossl_blake2b_final()
|
H A D | blake2_impl.h | 73 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64() function
|
/third_party/openssl/providers/implementations/digests/ |
H A D | blake2b_prov.c | 90 store64(P->node_offset, 0); in ossl_blake2b_param_init() 324 store64(target + sizeof(c->h[i]) * i, c->h[i]); in ossl_blake2b_final()
|
H A D | blake2_impl.h | 73 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64() function
|
/third_party/skia/src/opts/ |
H A D | SkVM_opts.h | 122 STRIDE_1(Op::store64): memcpy((char*)args[immA]+0, &r[x].i32, 4); 128 STRIDE_K(Op::store64): (skvx::cast<uint64_t>(r[x].u32) << 0 |
|
/third_party/python/Modules/_blake2/ |
H A D | blake2s_impl.c | 171 store64(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
|
H A D | blake2b_impl.c | 171 store64(&(self->param.node_offset), node_offset); 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) \ 647 void store64 (Ptr ptr, I32 lo, I32 hi); // *ptr = lo|(hi<<32) 1196 SI void store64 (Ptr ptr, I32 lo, I32 hi) { lo ->store64 (ptr, lo,hi); } in store64() function
|
H A D | SkVM.cpp | 306 case Op::store64: write(o, op, Ptr{immA}, V{x},V{y} ); break; in write_one_instruction() 426 case Op::store64: write(o, op, Ptr{immA}, R{x}, R{y} ); break; in dump() 707 void Builder::store64(Ptr ptr, I32 lo, I32 hi) { in store64() function in skvm::Builder 708 (void)push(Op::store64, lo.id,hi.id,NA,NA, ptr.ix); in store64() 1415 store64(ptr, pack32(lo,c) in store() 3645 case Op::store64: if (scalar) { 4015 case Op::store64: if (scalar) {
|
/third_party/skia/tests/ |
H A D | SkVMTest.cpp | 2318 b.store64(widePtr, b.load32(loPtr), b.load32(hiPtr));
|
Completed in 19 milliseconds