(b *testing.B)
| 104 | func BenchmarkEncode1K(b *testing.B) { benchmarkEncode(b, 1024) } |
| 105 | func BenchmarkEncode2K(b *testing.B) { benchmarkEncode(b, 1024*2) } |
| 106 | func BenchmarkEncode4K(b *testing.B) { benchmarkEncode(b, 1024*4) } |
| 107 | func BenchmarkEncode16K(b *testing.B) { benchmarkEncode(b, 1024*16) } |
| 108 | func BenchmarkEncode32K(b *testing.B) { benchmarkEncode(b, 1024*32) } |
| 109 | func BenchmarkEncode128K(b *testing.B) { benchmarkEncode(b, 1024*128) } |
nothing calls this directly
no test coverage detected