Home
last modified time | relevance | path

Searched refs:store64 (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/libs/random/test/
Dtest_seed_seq.cpp25 boost::uint64_t store64[10]; in BOOST_AUTO_TEST_CASE() local
39 std::fill_n(&store64[0], 10, 0); in BOOST_AUTO_TEST_CASE()
44 seq.generate(&store64[0], &store64[0] + 10); in BOOST_AUTO_TEST_CASE()
46 &store64[0], &store64[0] + 10, &expected[0], &expected[0] + 10); in BOOST_AUTO_TEST_CASE()
68 std::fill_n(&store64[0], 10, 0); in BOOST_AUTO_TEST_CASE()
74 seq_r.generate(&store64[0], &store64[0] + 10); in BOOST_AUTO_TEST_CASE()
76 &store64[0], &store64[0] + 10, &expected_r[0], &expected_r[0] + 10); in BOOST_AUTO_TEST_CASE()
83 std::fill_n(&store64[0], 10, 0); in BOOST_AUTO_TEST_CASE()
89 seq_it.generate(&store64[0], &store64[0] + 10); in BOOST_AUTO_TEST_CASE()
91 &store64[0], &store64[0] + 10, &expected_r[0], &expected_r[0] + 10); in BOOST_AUTO_TEST_CASE()
[all …]
/third_party/python/Modules/_blake2/impl/
Dblake2b-ref.c111 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()
Dblake2bp.c36 store64(&P->node_offset, offset); in blake2bp_init_leaf()
55 store64(&P->node_offset, 0); in blake2bp_init_root()
Dblake2-impl.h78 static inline void store64( void *dst, uint64_t w ) in store64() function
/third_party/openssl/crypto/blake2/
Dblake2b.c90 store64(P->node_offset, 0); in BLAKE2b_Init()
264 store64(md + sizeof(c->h[i]) * i, c->h[i]); in BLAKE2b_Final()
Dblake2_impl.h81 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64() function
/third_party/skia/src/opts/
DSkVM_opts.h122 STRIDE_1(Op::store64): memcpy((char*)args[immA]+0, &r[x].i32, 4); in interpret_skvm()
128 STRIDE_K(Op::store64): (skvx::cast<uint64_t>(r[x].u32) << 0 | in interpret_skvm()
/third_party/python/Modules/_blake2/
Dblake2s_impl.c168 store64(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
Dblake2b_impl.c169 store64(&(self->param.node_offset), node_offset); in py_blake2b_new_impl()
/third_party/skia/src/core/
DSkVM.h438 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
DSkVM.cpp306 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) { in jit()
4015 case Op::store64: if (scalar) { in jit()
/third_party/skia/tests/
DSkVMTest.cpp2318 b.store64(widePtr, b.load32(loPtr), b.load32(hiPtr)); in DEF_TEST()