MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / luaO_fb2int

Function luaO_fb2int

Source/Misc/lua/src/lua.c:7307–7311  ·  view source on GitHub ↗

converts back */

Source from the content-addressed store, hash-verified

7305
7306/* converts back */
7307int luaO_fb2int (int x) {
7308int e = (x >> 3) & 31;
7309if (e == 0) return x;
7310else return ((x & 7)+8) << (e - 1);
7311}
7312
7313
7314int luaO_log2 (unsigned int x) {

Callers 1

luaV_executeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected