Home
last modified time | relevance | path

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

/openthread-latest/src/posix/platform/
Dentropy.cpp70 uint64_t tmpstate; in randomUint32Get() local
72 tmpstate = (uint64_t)33614 * (uint64_t)sState; in randomUint32Get()
73 q = tmpstate & 0xffffffff; in randomUint32Get()
75 p = tmpstate >> 32; in randomUint32Get()
/openthread-latest/examples/platforms/simulation/
Dentropy.c68 uint64_t tmpstate; in randomUint32Get() local
70 tmpstate = (uint64_t)33614 * (uint64_t)sState; in randomUint32Get()
71 q = tmpstate & 0xffffffff; in randomUint32Get()
73 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()