Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/F-Stack/f-stack
/ luaO_fb2int
Function
luaO_fb2int
freebsd/contrib/openzfs/module/lua/lobject.c:44–48 ·
view source on GitHub ↗
converts back */
Source
from the content-addressed store, hash-verified
42
43
/* converts back */
44
int luaO_fb2int (int x) {
45
int e = (x >> 3) & 0x1f;
46
if (e == 0) return x;
47
else return ((x & 7) + 8) << (e - 1);
48
}
49
50
51
int luaO_ceillog2 (unsigned int x) {
Callers
1
luaV_execute
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected