Searched defs:FastRand (Results 1 – 3 of 3) sorted by relevance
29 pub(crate) struct FastRand { struct30 one: u32,31 two: u32,57 impl FastRand { impl64 pub(crate) fn from_seed(seed: RngSeed) -> FastRand { in from_seed()
772 pub(crate) struct FastRand { struct773 one: Cell<u32>,774 two: Cell<u32>,777 impl FastRand { impl779 pub(crate) fn new(seed: u64) -> FastRand { in new()
47 impl FastRand { impl