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

Function luaO_fb2int

third-party/lua-5.2.4/src/lobject.c:48–52  ·  view source on GitHub ↗

converts back */

Source from the content-addressed store, hash-verified

46
47/* converts back */
48int luaO_fb2int (int x) {
49 int e = (x >> 3) & 0x1f;
50 if (e == 0) return x;
51 else return ((x & 7) + 8) << (e - 1);
52}
53
54
55int luaO_ceillog2 (unsigned int x) {

Callers 1

luaV_executeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected