Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BigPig0/RelayLive
/ luaO_fb2int
Function
luaO_fb2int
ThirdParty/lua/lua/lobject.c:51–55 ·
view source on GitHub ↗
converts back */
Source
from the content-addressed store, hash-verified
49
50
/* converts back */
51
int luaO_fb2int (int x) {
52
int e = (x >> 3) & 0x1f;
53
if (e == 0) return x;
54
else return ((x & 7) + 8) << (e - 1);
55
}
56
57
58
int luaO_ceillog2 (unsigned int x) {
Callers
1
luaV_execute
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected