//! Auto-generated module
//!//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
/// Xorshift-64 PRNG — used internally in tests for timing jitter.
pubfnxorshift64(state:&mutu64)->u64{letmut x =*state;
x ^= x <<13;
x ^= x >>7;
x ^= x <<17;*state = x;
x
}