Searched refs:rngs (Results 1 – 25 of 25) sorted by relevance
/external/libxml2/python/tests/ |
D | reader6.py | 38 rngs = rngp.relaxNGParse() variable 52 reader.RelaxNGSetSchema(rngs) 95 reader.RelaxNGSetSchema(rngs) 119 del rngs
|
D | relaxng.py | 27 rngs = rngp.relaxNGParse() variable 28 ctxt = rngs.relaxNGNewValidCtxt() 37 del rngs
|
D | validRNG.py | 43 rngs = rngp.relaxNGParse() variable 44 ctxt = rngs.relaxNGNewValidCtxt() 65 del rngs
|
/external/rust/crates/rand_xorshift/ |
D | README.md | 3 [![Build Status](https://travis-ci.org/rust-random/rngs.svg)](https://travis-ci.org/rust-random/rng… 4 ….com/api/projects/status/github/rust-random/rngs?svg=true)](https://ci.appveyor.com/project/rust-r… 9 …ields.io/badge/rustc-1.32+-lightgray.svg)](https://github.com/rust-random/rngs#rust-version-requir… 25 - [Changelog](https://github.com/rust-random/rngs/blob/master/rand_xorshift/CHANGELOG.md)
|
D | Cargo.toml.orig | 7 repository = "https://github.com/rust-random/rngs"
|
D | Cargo.toml | 25 repository = "https://github.com/rust-random/rngs"
|
/external/rust/crates/rand/src/ |
D | prelude.rs | 24 pub use crate::rngs::SmallRng; 26 #[doc(no_inline)] pub use crate::rngs::StdRng; 29 pub use crate::rngs::ThreadRng;
|
D | lib.rs | 101 pub mod rngs; module 106 pub use crate::rngs::thread::thread_rng;
|
D | rng.rs | 424 use crate::rngs::mock::StepRng;
|
/external/libxml2/ |
D | check-xsddata-test-suite.py | 177 rngs = rngp.relaxNGParse() 179 rngs = None 180 if rngs == None: 187 return rngs 203 rngs = rngp.relaxNGParse() 205 rngs = None 206 if rngs != None:
|
D | check-relaxng-test-suite.py | 165 rngs = rngp.relaxNGParse() 167 rngs = None 168 if rngs == None: 175 return rngs 191 rngs = rngp.relaxNGParse() 193 rngs = None 194 if rngs != None:
|
D | check-relaxng-test-suite2.py | 179 rngs = rngp.relaxNGParse() 181 rngs = None 182 if rngs == None: 189 return rngs 205 rngs = rngp.relaxNGParse() 207 rngs = None 208 if rngs != None:
|
/external/rust/crates/rand/src/rngs/ |
D | thread.rs | 16 use crate::rngs::adapter::ReseedingRng; 17 use crate::rngs::OsRng;
|
D | std.rs | 81 use crate::rngs::StdRng;
|
/external/rust/crates/criterion/src/stats/ |
D | test.rs | 3 use rand::rngs::StdRng;
|
/external/rust/crates/hashbrown/tests/ |
D | set.rs | 4 use rand::{distributions::Alphanumeric, rngs::SmallRng, Rng, SeedableRng};
|
/external/rust/crates/tokio/tests/ |
D | time_pause.rs | 5 use rand::{rngs::StdRng, Rng};
|
/external/rust/crates/rand/src/rngs/adapter/ |
D | reseeding.rs | 332 use crate::rngs::mock::StepRng; 333 use crate::rngs::std::Core;
|
/external/rust/crates/rand/ |
D | README.md | 19 …he best-in-class [cryptographic](https://rust-random.github.io/book/guide-rngs.html#cryptographica… 20 …[non-cryptographic](https://rust-random.github.io/book/guide-rngs.html#basic-pseudo-random-number-… 117 behind `rngs::OsRng`
|
D | CHANGELOG.md | 40 - Restrict `rand::rngs::adapter` to `std` (#1027; see also #928) 183 - Move `rngs::OsRng` to `rand_os` sub-crate; clean up code; use as dependency (#643) ##BLOCKER##
|
/external/rust/crates/regex/tests/ |
D | crazy.rs | 140 use rand::rngs::SmallRng; in dfa_handles_pathological_case()
|
/external/rust/crates/rand/src/distributions/ |
D | float.rs | 176 use crate::rngs::mock::StepRng;
|
D | uniform.rs | 1132 use crate::rngs::mock::StepRng;
|
/external/rust/crates/itertools/tests/ |
D | test_std.rs | 4 use rand::{distributions::{Distribution, Standard}, Rng, SeedableRng, rngs::StdRng};
|
/external/rust/crates/hashbrown/src/ |
D | map.rs | 3505 use rand::{rngs::SmallRng, Rng, SeedableRng};
|