MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / times9

Function times9

third-party/lua-5.4.6/src/lmathlib.c:434–436  ·  view source on GitHub ↗

return i * 9 */

Source from the content-addressed store, hash-verified

432
433/* return i * 9 */
434static Rand64 times9 (Rand64 i) {
435 return Iadd(Ishl(i, 3), i); /* i * 9 == (i << 3) + i */
436}
437
438/* return 'i' rotated left 'n' bits */
439static Rand64 rotl (Rand64 i, int n) {

Callers 1

nextrandFunction · 0.70

Calls 2

IaddFunction · 0.70
IshlFunction · 0.70

Tested by

no test coverage detected