Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ClassiCube/ClassiCube
/ Math_ilog2
Function
Math_ilog2
src/ExtMath.c:23–27 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
21
}
22
23
int Math_ilog2(cc_uint32 value) {
24
cc_uint32 r = 0;
25
while (value >>= 1) r++;
26
return r;
27
}
28
29
int Math_CeilDiv(int a, int b) {
30
return a / b + (a % b != 0 ? 1 : 0);
Callers
15
imdct_init
Function · 0.85
LavaAnimation_Tick
Function · 0.85
WaterAnimation_Tick
Function · 0.85
Atlas_Update1D
Function · 0.85
Fallback_CellWidth
Function · 0.85
Gfx_BindTexture
Function · 0.85
Gfx_BindTexture
Function · 0.85
CalcMipmapsLevels
Function · 0.85
Gfx_BindTexture
Function · 0.85
Gfx_AllocTexture
Function · 0.85
Gfx_AllocTexture
Function · 0.85
AllocTextureAt
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected