Searched refs:read_u64_into (Results 1 – 7 of 7) sorted by relevance
/external/rust/crates/rand_core/src/ |
D | le.rs | 27 pub fn read_u64_into(src: &[u8], dst: &mut [u64]) { in read_u64_into() function 49 read_u64_into(&bytes, &mut buf); in test_read() 54 read_u64_into(&bytes[7..15], &mut buf); // unaligned in test_read()
|
D | lib.rs | 465 le::read_u64_into(&seed, &mut x); in test_seed_from_u64()
|
/external/rust/crates/rand/src/rngs/ |
D | xoshiro256plusplus.rs | 11 use rand_core::le::read_u64_into; 39 read_u64_into(&seed, &mut state);
|
/external/rust/crates/byteorder/src/ |
D | lib.rs | 1039 fn read_u64_into(src: &[u8], dst: &mut [u64]); in read_u64_into() method 1148 Self::read_u64_into(src, dst); in read_i64_into() 1268 Self::read_u64_into(src, dst); in read_f64_into() 2080 fn read_u64_into(src: &[u8], dst: &mut [u64]) { in read_u64_into() method 2280 fn read_u64_into(src: &[u8], dst: &mut [u64]) { in read_u64_into() method 3277 read_u64_into, 3284 read_u64_into, 4033 qc_slice!(prop_slice_u64, u64, read_u64_into, write_u64_into, 0);
|
D | io.rs | 635 fn read_u64_into<T: ByteOrder>(&mut self, dst: &mut [u64]) -> Result<()> { in read_u64_into() method
|
/external/rust/crates/rand_core/ |
D | CHANGELOG.md | 9 - Fixed assertions in `le::read_u32_into` and `le::read_u64_into` which could
|
/external/rust/crates/byteorder/benches/ |
D | bench.rs | 324 bench_slice!(slice_u64, u64, read_u64_into, write_u64_into);
|