Home
last modified time | relevance | path

Searched refs:Rand64 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/lua/src/
H A Dlmathlib.c266 #if !defined(LUA_RAND32) && !defined(Rand64)
273 #define Rand64 unsigned long macro
278 #define Rand64 unsigned long long macro
283 #define Rand64 lua_Unsigned macro
290 #if defined(Rand64) /* { */
304 static Rand64 rotl (Rand64 x, int n) { in rotl()
308 static Rand64 nextrand (Rand64 *state) { in nextrand()
309 Rand64 state0 = state[0]; in nextrand()
310 Rand64 state1 = state[1]; in nextrand()
311 Rand64 state2 = state[2] ^ state0; in nextrand()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp101 uint64_t Rand64() { in Rand64() function in llvm::__anone1ed83310111::Random
111 return Rand64() % y; in operator ()()
435 RandomBits[i] = Ran->Rand64(); in Act()