Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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 */
48
int 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
55
int luaO_ceillog2 (unsigned int x) {
Callers
1
luaV_execute
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected