/third_party/boost/libs/random/test/ |
D | test_seed_seq.cpp | 25 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/ |
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()
|
D | blake2bp.c | 36 store64(&P->node_offset, offset); in blake2bp_init_leaf() 55 store64(&P->node_offset, 0); in blake2bp_init_root()
|
D | blake2-impl.h | 78 static inline void store64( void *dst, uint64_t w ) in store64() function
|
/third_party/openssl/crypto/blake2/ |
D | blake2b.c | 90 store64(P->node_offset, 0); in BLAKE2b_Init() 264 store64(md + sizeof(c->h[i]) * i, c->h[i]); in BLAKE2b_Final()
|
D | blake2_impl.h | 81 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64() function
|
/third_party/skia/src/opts/ |
D | SkVM_opts.h | 122 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/ |
D | blake2s_impl.c | 168 store64(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
|
D | blake2b_impl.c | 169 store64(&(self->param.node_offset), node_offset); in py_blake2b_new_impl()
|
/third_party/skia/src/core/ |
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
|
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) { in jit() 4015 case Op::store64: if (scalar) { in jit()
|
/third_party/skia/tests/ |
D | SkVMTest.cpp | 2318 b.store64(widePtr, b.load32(loPtr), b.load32(hiPtr)); in DEF_TEST()
|