(b *testing.B)
| 43 | } |
| 44 | |
| 45 | func BenchmarkEncodeVarintLong(b *testing.B) { |
| 46 | c := [10]byte{} |
| 47 | |
| 48 | for range b.N { |
| 49 | encodeVarint(c[:], math.MaxUint64) |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func BenchmarkEncodeTag(b *testing.B) { |
| 54 | c := [8]byte{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…