type testing.BenchmarkResult

12 uses

	testing (current package)
		benchmark.go#L107: 	result           BenchmarkResult
		benchmark.go#L283: func (b *B) doBench() BenchmarkResult {
		benchmark.go#L337: 	b.result = BenchmarkResult{b.N, b.duration, b.bytes, b.netAllocs, b.netBytes, b.extra}
		benchmark.go#L360: type BenchmarkResult struct {
		benchmark.go#L372: func (r BenchmarkResult) NsPerOp() int64 {
		benchmark.go#L383: func (r BenchmarkResult) mbPerSec() float64 {
		benchmark.go#L395: func (r BenchmarkResult) AllocsPerOp() int64 {
		benchmark.go#L407: func (r BenchmarkResult) AllocedBytesPerOp() int64 {
		benchmark.go#L424: func (r BenchmarkResult) String() string {
		benchmark.go#L489: func (r BenchmarkResult) MemString() string {
		benchmark.go#L686: func (b *B) add(other BenchmarkResult) {
		benchmark.go#L814: func Benchmark(f func(b *B)) BenchmarkResult {