Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/segmentio/kafka-go
/ sizeOfVarInt
Function
sizeOfVarInt
protocol/size.go:27–29 ·
view source on GitHub ↗
(i int64)
Source
from the content-addressed store, hash-verified
25
}
26
27
func
sizeOfVarInt(i int64) int {
28
return
sizeOfUnsignedVarInt(uint64((i << 1) ^ (i >> 63)))
// zig-zag encoding
29
}
30
31
func
sizeOfUnsignedVarInt(i uint64) int {
32
return
(bits.Len64(i|1) + 6) / 7
Callers
5
TestVarInts
Function · 0.85
sizeOfVarString
Function · 0.85
sizeOfVarNullBytes
Function · 0.85
sizeOfVarNullBytesIface
Function · 0.85
writeToVersion2
Method · 0.85
Calls
1
sizeOfUnsignedVarInt
Function · 0.85
Tested by
1
TestVarInts
Function · 0.68