Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/questdb/questdb
/ msb
Method
msb
core/src/main/java/io/questdb/std/Numbers.java:1086–1088 ·
view source on GitHub ↗
(int value)
Source
from the content-addressed store, hash-verified
1084
}
1085
1086
public
static
int
msb(
int
value) {
1087
return
31 - Integer.numberOfLeadingZeros(value);
1088
}
1089
1090
public
static
int
msb(long value) {
1091
return
63 - Long.numberOfLeadingZeros(value);
Callers
15
populateColumnTypes
Method · 0.95
CounterWithTwoLabelsImpl
Method · 0.95
create
Method · 0.95
createWriter
Method · 0.95
bind
Method · 0.95
LogLevel
Class · 0.95
LogAlertSocketWriter
Method · 0.95
AbstractMSequence
Method · 0.95
buildQueryMetadata
Method · 0.95
toSizePretty
Method · 0.95
IntLongAssociativeCache
Method · 0.95
SimpleAssociativeCache
Method · 0.95
Calls
no outgoing calls
Tested by
1
populateColumnTypes
Method · 0.76