convert a 'Rand64' to a 'lua_Unsigned' */
| 537 | |
| 538 | /* convert a 'Rand64' to a 'lua_Unsigned' */ |
| 539 | static lua_Unsigned I2UInt (Rand64 x) { |
| 540 | return (((lua_Unsigned)trim32(x.h) << 31) << 1) | (lua_Unsigned)trim32(x.l); |
| 541 | } |
| 542 | |
| 543 | /* convert a 'lua_Unsigned' to a 'Rand64' */ |
| 544 | static Rand64 Int2I (lua_Unsigned n) { |
no outgoing calls
no test coverage detected