Searched refs:read_u32_into (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/rand_core/src/ |
D | le.rs | 18 pub fn read_u32_into(src: &[u8], dst: &mut [u32]) { in read_u32_into() function 39 read_u32_into(&bytes, &mut buf); in test_read() 44 read_u32_into(&bytes[1..13], &mut buf); // unaligned in test_read()
|
/external/rust/crates/rand/src/rngs/ |
D | xoshiro128plusplus.rs | 11 use rand_core::le::read_u32_into; 39 read_u32_into(&seed, &mut state);
|
/external/rust/crates/rand_xorshift/src/ |
D | lib.rs | 84 le::read_u32_into(&seed, &mut seed_u32); in from_seed()
|
/external/rust/crates/byteorder/src/ |
D | lib.rs | 1016 fn read_u32_into(src: &[u8], dst: &mut [u32]); in read_u32_into() method 1119 Self::read_u32_into(src, dst); in read_i32_into() 1207 Self::read_u32_into(src, dst); in read_f32_into() 2075 fn read_u32_into(src: &[u8], dst: &mut [u32]) { in read_u32_into() method 2275 fn read_u32_into(src: &[u8], dst: &mut [u32]) { in read_u32_into() method 3248 read_u32_into, 3255 read_u32_into, 4031 qc_slice!(prop_slice_u32, u32, read_u32_into, write_u32_into, 0);
|
D | io.rs | 597 fn read_u32_into<T: ByteOrder>(&mut self, dst: &mut [u32]) -> Result<()> { in read_u32_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
|