Home
last modified time | relevance | path

Searched refs:tmpstate (Results 1 – 3 of 3) sorted by relevance

/openthread-latest/examples/platforms/simulation/
Dentropy.c69 uint64_t tmpstate; in randomUint32Get() local
71 tmpstate = (uint64_t)33614 * (uint64_t)sState; in randomUint32Get()
72 q = tmpstate & 0xffffffff; in randomUint32Get()
74 p = tmpstate >> 32; in randomUint32Get()
/openthread-latest/src/posix/platform/
Dentropy.cpp71 uint64_t tmpstate; in randomUint32Get() local
73 tmpstate = (uint64_t)33614 * (uint64_t)sState; in randomUint32Get()
74 q = tmpstate & 0xffffffff; in randomUint32Get()
76 p = tmpstate >> 32; in randomUint32Get()
/openthread-latest/src/core/common/
Drandom.cpp109 uint64_t tmpstate; in GetNext() local
111 tmpstate = static_cast<uint64_t>(33614) * static_cast<uint64_t>(mState); in GetNext()
112 q = tmpstate & 0xffffffff; in GetNext()
114 p = tmpstate >> 32; in GetNext()