MCPcopy
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

populateColumnTypesMethod · 0.95
createMethod · 0.95
createWriterMethod · 0.95
bindMethod · 0.95
LogLevelClass · 0.95
LogAlertSocketWriterMethod · 0.95
AbstractMSequenceMethod · 0.95
buildQueryMetadataMethod · 0.95
toSizePrettyMethod · 0.95

Calls

no outgoing calls

Tested by 1

populateColumnTypesMethod · 0.76