/external/rust/crates/rand_core/src/ |
D | lib.rs | 179 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error>; in try_fill_bytes() method 358 rng.try_fill_bytes(seed.as_mut())?; in from_rng() 407 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method 408 (**self).try_fill_bytes(dest) in try_fill_bytes() 433 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method 434 (**self).try_fill_bytes(dest) in try_fill_bytes() 441 self.try_fill_bytes(buf)?; in read()
|
D | os.rs | 62 if let Err(e) = self.try_fill_bytes(dest) { in fill_bytes() 67 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method
|
D | block.rs | 231 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() function 406 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() function
|
/external/rust/crates/rand/src/rngs/adapter/ |
D | read.rs | 68 self.try_fill_bytes(dest).unwrap_or_else(|err| { in fill_bytes() 76 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method 153 let result = rng.try_fill_bytes(&mut w); in test_reader_rng_insufficient_bytes()
|
D | reseeding.rs | 126 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() function 127 self.0.try_fill_bytes(dest) in try_fill_bytes()
|
/external/rust/crates/rand/src/rngs/ |
D | small.rs | 100 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method 101 self.0.try_fill_bytes(dest) in try_fill_bytes()
|
D | std.rs | 57 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method 58 self.0.try_fill_bytes(dest) in try_fill_bytes()
|
D | thread.rs | 122 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method 126 rng.try_fill_bytes(dest) in try_fill_bytes()
|
D | mock.rs | 67 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method
|
D | xoshiro256plusplus.rs | 96 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method
|
D | xoshiro128plusplus.rs | 94 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method
|
/external/rust/crates/rand_xorshift/src/ |
D | lib.rs | 73 fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> { in try_fill_bytes() method 104 rng.try_fill_bytes(&mut b[..])?; in from_rng()
|
/external/rust/crates/rand/src/ |
D | rng.rs | 339 rng.try_fill_bytes(self) in try_fill() 350 rng.try_fill_bytes(unsafe { 368 rng.try_fill_bytes(unsafe {
|
/external/rust/crates/rand_chacha/src/ |
D | chacha.rs | 178 fn try_fill_bytes(&mut self, bytes: &mut [u8]) -> Result<(), Error> { 179 self.rng.try_fill_bytes(bytes)
|
/external/rust/crates/rand_core/ |
D | CHANGELOG.md | 78 - Add `RngCore::try_fill_bytes`. (#225)
|
/external/rust/crates/rand/ |
D | CHANGELOG.md | 332 - Add `RngCore::try_fill_bytes`. (#225)
|