type testing.BenchmarkResult

12 uses

	testing (current package)
		benchmark.go#L106: 	result           BenchmarkResult
		benchmark.go#L279: func (b *B) doBench() BenchmarkResult {
		benchmark.go#L328: 	b.result = BenchmarkResult{b.N, b.duration, b.bytes, b.netAllocs, b.netBytes, b.extra}
		benchmark.go#L351: type BenchmarkResult struct {
		benchmark.go#L363: func (r BenchmarkResult) NsPerOp() int64 {
		benchmark.go#L374: func (r BenchmarkResult) mbPerSec() float64 {
		benchmark.go#L386: func (r BenchmarkResult) AllocsPerOp() int64 {
		benchmark.go#L398: func (r BenchmarkResult) AllocedBytesPerOp() int64 {
		benchmark.go#L415: func (r BenchmarkResult) String() string {
		benchmark.go#L480: func (r BenchmarkResult) MemString() string {
		benchmark.go#L677: func (b *B) add(other BenchmarkResult) {
		benchmark.go#L805: func Benchmark(f func(b *B)) BenchmarkResult {