Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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 */
7307
int luaO_fb2int (int x) {
7308
int e = (x >> 3) & 31;
7309
if (e == 0) return x;
7310
else return ((x & 7)+8) << (e - 1);
7311
}
7312
7313
7314
int luaO_log2 (unsigned int x) {
Callers
1
luaV_execute
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected