Home
last modified time | relevance | path

Searched refs:rngs (Results 1 – 25 of 25) sorted by relevance

/external/libxml2/python/tests/
Dreader6.py38 rngs = rngp.relaxNGParse() variable
52 reader.RelaxNGSetSchema(rngs)
95 reader.RelaxNGSetSchema(rngs)
119 del rngs
Drelaxng.py27 rngs = rngp.relaxNGParse() variable
28 ctxt = rngs.relaxNGNewValidCtxt()
37 del rngs
DvalidRNG.py43 rngs = rngp.relaxNGParse() variable
44 ctxt = rngs.relaxNGNewValidCtxt()
65 del rngs
/external/rust/crates/rand_xorshift/
DREADME.md3 [![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)
DCargo.toml.orig7 repository = "https://github.com/rust-random/rngs"
DCargo.toml25 repository = "https://github.com/rust-random/rngs"
/external/rust/crates/rand/src/
Dprelude.rs24 pub use crate::rngs::SmallRng;
26 #[doc(no_inline)] pub use crate::rngs::StdRng;
29 pub use crate::rngs::ThreadRng;
Dlib.rs101 pub mod rngs; module
106 pub use crate::rngs::thread::thread_rng;
Drng.rs424 use crate::rngs::mock::StepRng;
/external/libxml2/
Dcheck-xsddata-test-suite.py177 rngs = rngp.relaxNGParse()
179 rngs = None
180 if rngs == None:
187 return rngs
203 rngs = rngp.relaxNGParse()
205 rngs = None
206 if rngs != None:
Dcheck-relaxng-test-suite.py165 rngs = rngp.relaxNGParse()
167 rngs = None
168 if rngs == None:
175 return rngs
191 rngs = rngp.relaxNGParse()
193 rngs = None
194 if rngs != None:
Dcheck-relaxng-test-suite2.py179 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/
Dthread.rs16 use crate::rngs::adapter::ReseedingRng;
17 use crate::rngs::OsRng;
Dstd.rs81 use crate::rngs::StdRng;
/external/rust/crates/criterion/src/stats/
Dtest.rs3 use rand::rngs::StdRng;
/external/rust/crates/hashbrown/tests/
Dset.rs4 use rand::{distributions::Alphanumeric, rngs::SmallRng, Rng, SeedableRng};
/external/rust/crates/tokio/tests/
Dtime_pause.rs5 use rand::{rngs::StdRng, Rng};
/external/rust/crates/rand/src/rngs/adapter/
Dreseeding.rs332 use crate::rngs::mock::StepRng;
333 use crate::rngs::std::Core;
/external/rust/crates/rand/
DREADME.md19 …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`
DCHANGELOG.md40 - 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/
Dcrazy.rs140 use rand::rngs::SmallRng; in dfa_handles_pathological_case()
/external/rust/crates/rand/src/distributions/
Dfloat.rs176 use crate::rngs::mock::StepRng;
Duniform.rs1132 use crate::rngs::mock::StepRng;
/external/rust/crates/itertools/tests/
Dtest_std.rs4 use rand::{distributions::{Distribution, Standard}, Rng, SeedableRng, rngs::StdRng};
/external/rust/crates/hashbrown/src/
Dmap.rs3505 use rand::{rngs::SmallRng, Rng, SeedableRng};