OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:benchmarkresult
(Results
1 - 20
of
20
) sorted by null
/prebuilts/go/darwin-x86/src/go/doc/testdata/
benchmark.go
33
result
BenchmarkResult
131
func (b *B) run()
BenchmarkResult
{
171
b.result =
BenchmarkResult
{b.N, b.duration, b.bytes}
175
type
BenchmarkResult
struct {
181
func (r
BenchmarkResult
) NsPerOp() int64 {
188
func (r
BenchmarkResult
) mbPerSec() float64 {
195
func (r
BenchmarkResult
) String() string {
285
func Benchmark(f func(b *B))
BenchmarkResult
{
testing.0.golden
88
type
BenchmarkResult
struct {
95
func Benchmark(f func(b *B))
BenchmarkResult
98
func (r
BenchmarkResult
) NsPerOp() int64
101
func (r
BenchmarkResult
) String() string
testing.2.golden
88
type
BenchmarkResult
struct {
95
func Benchmark(f func(b *B))
BenchmarkResult
98
func (r
BenchmarkResult
) NsPerOp() int64
101
func (r
BenchmarkResult
) String() string
testing.1.golden
118
result
BenchmarkResult
170
func (b *B) run()
BenchmarkResult
179
type
BenchmarkResult
struct {
186
func Benchmark(f func(b *B))
BenchmarkResult
189
func (r
BenchmarkResult
) NsPerOp() int64
192
func (r
BenchmarkResult
) String() string
195
func (r
BenchmarkResult
) mbPerSec() float64
/prebuilts/go/linux-x86/src/go/doc/testdata/
benchmark.go
33
result
BenchmarkResult
131
func (b *B) run()
BenchmarkResult
{
171
b.result =
BenchmarkResult
{b.N, b.duration, b.bytes}
175
type
BenchmarkResult
struct {
181
func (r
BenchmarkResult
) NsPerOp() int64 {
188
func (r
BenchmarkResult
) mbPerSec() float64 {
195
func (r
BenchmarkResult
) String() string {
285
func Benchmark(f func(b *B))
BenchmarkResult
{
testing.0.golden
88
type
BenchmarkResult
struct {
95
func Benchmark(f func(b *B))
BenchmarkResult
98
func (r
BenchmarkResult
) NsPerOp() int64
101
func (r
BenchmarkResult
) String() string
testing.2.golden
88
type
BenchmarkResult
struct {
95
func Benchmark(f func(b *B))
BenchmarkResult
98
func (r
BenchmarkResult
) NsPerOp() int64
101
func (r
BenchmarkResult
) String() string
testing.1.golden
118
result
BenchmarkResult
170
func (b *B) run()
BenchmarkResult
179
type
BenchmarkResult
struct {
186
func Benchmark(f func(b *B))
BenchmarkResult
189
func (r
BenchmarkResult
) NsPerOp() int64
192
func (r
BenchmarkResult
) String() string
195
func (r
BenchmarkResult
) mbPerSec() float64
/prebuilts/go/darwin-x86/src/testing/
benchmark.go
45
result
BenchmarkResult
178
func (b *B) run()
BenchmarkResult
{
218
b.result =
BenchmarkResult
{b.N, b.duration, b.bytes, b.netAllocs, b.netBytes}
222
type
BenchmarkResult
struct {
230
func (r
BenchmarkResult
) NsPerOp() int64 {
237
func (r
BenchmarkResult
) mbPerSec() float64 {
244
func (r
BenchmarkResult
) AllocsPerOp() int64 {
251
func (r
BenchmarkResult
) AllocedBytesPerOp() int64 {
258
func (r
BenchmarkResult
) String() string {
278
func (r
BenchmarkResult
) MemString() string
[
all
...]
/prebuilts/go/linux-x86/src/testing/
benchmark.go
45
result
BenchmarkResult
178
func (b *B) run()
BenchmarkResult
{
218
b.result =
BenchmarkResult
{b.N, b.duration, b.bytes, b.netAllocs, b.netBytes}
222
type
BenchmarkResult
struct {
230
func (r
BenchmarkResult
) NsPerOp() int64 {
237
func (r
BenchmarkResult
) mbPerSec() float64 {
244
func (r
BenchmarkResult
) AllocsPerOp() int64 {
251
func (r
BenchmarkResult
) AllocedBytesPerOp() int64 {
258
func (r
BenchmarkResult
) String() string {
278
func (r
BenchmarkResult
) MemString() string
[
all
...]
/prebuilts/go/darwin-x86/pkg/darwin_amd64/
testing.a
111
type @"".
BenchmarkResult
struct { N int; T @"time".Duration; Bytes int64; MemAllocs uint64; MemBytes uint64 }
112
func (@"".r·2 @"".
BenchmarkResult
) AllocedBytesPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemBytes) / int64(@"".r·2.N) }
113
func (@"".r·2 @"".
BenchmarkResult
) AllocsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemAllocs) / int64(@"".r·2.N) }
114
func (@"".r·2 @"".
BenchmarkResult
) MemString () (? string)
115
func (@"".r·2 @"".
BenchmarkResult
) NsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return @"".r·2.T.Nanoseconds() / int64(@"".r·2.N) }
116
func (@"".r·2 @"".
BenchmarkResult
) String () (? string)
117
func (@"".r·2 @"".
BenchmarkResult
) @"".mbPerSec () (? float64) { if @"".r·2.Bytes <= 0x0 || @"".r·2.T <= @"time".Duration(0x0) || @"".r·2.N <= 0x0 { return 0 }; return float64(@"".r·2.Bytes) * float64(@"".r·2.N) / 12786682062094304179739022253232809188346257992355721833919106906625522642205759980012773798148063113870651109873281527379754908382364816614564560896000000p-492 / @"".r·2.T.Seconds() }
120
type @"".B struct { ? @"".common; N int; @"".previousN int; @"".previousDuration @"time".Duration; @"".benchmark @"".InternalBenchmark; @"".bytes int64; @"".timerOn bool; @"".showAllocResult bool; @"".result @"".
BenchmarkResult
; @"".parallelism int; @"".startAllocs uint64; @"".startBytes uint64; @"".netAllocs uint64; @"".netBytes uint64 }
130
func (@"".b·2 *@"".B) @"".run () (? @"".
BenchmarkResult
)
135
func @"".Benchmark (@"".f·2 func(@"".b *@"".B)) (? @"".
BenchmarkResult
)
[
all
...]
/prebuilts/go/linux-x86/pkg/linux_amd64/
testing.a
111
type @"".
BenchmarkResult
struct { N int; T @"time".Duration; Bytes int64; MemAllocs uint64; MemBytes uint64 }
112
func (@"".r·2 @"".
BenchmarkResult
) AllocedBytesPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemBytes) / int64(@"".r·2.N) }
113
func (@"".r·2 @"".
BenchmarkResult
) AllocsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemAllocs) / int64(@"".r·2.N) }
114
func (@"".r·2 @"".
BenchmarkResult
) MemString () (? string)
115
func (@"".r·2 @"".
BenchmarkResult
) NsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return @"".r·2.T.Nanoseconds() / int64(@"".r·2.N) }
116
func (@"".r·2 @"".
BenchmarkResult
) String () (? string)
117
func (@"".r·2 @"".
BenchmarkResult
) @"".mbPerSec () (? float64) { if @"".r·2.Bytes <= 0x0 || @"".r·2.T <= @"time".Duration(0x0) || @"".r·2.N <= 0x0 { return 0 }; return float64(@"".r·2.Bytes) * float64(@"".r·2.N) / 12786682062094304179739022253232809188346257992355721833919106906625522642205759980012773798148063113870651109873281527379754908382364816614564560896000000p-492 / @"".r·2.T.Seconds() }
120
type @"".B struct { ? @"".common; N int; @"".previousN int; @"".previousDuration @"time".Duration; @"".benchmark @"".InternalBenchmark; @"".bytes int64; @"".timerOn bool; @"".showAllocResult bool; @"".result @"".
BenchmarkResult
; @"".parallelism int; @"".startAllocs uint64; @"".startBytes uint64; @"".netAllocs uint64; @"".netBytes uint64 }
130
func (@"".b·2 *@"".B) @"".run () (? @"".
BenchmarkResult
)
135
func @"".Benchmark (@"".f·2 func(@"".b *@"".B)) (? @"".
BenchmarkResult
)
[
all
...]
/prebuilts/go/darwin-x86/pkg/darwin_amd64_race/
testing.a
111
type @"".
BenchmarkResult
struct { N int; T @"time".Duration; Bytes int64; MemAllocs uint64; MemBytes uint64 }
112
func (@"".r·2 @"".
BenchmarkResult
) AllocedBytesPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemBytes) / int64(@"".r·2.N) }
113
func (@"".r·2 @"".
BenchmarkResult
) AllocsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemAllocs) / int64(@"".r·2.N) }
114
func (@"".r·2 @"".
BenchmarkResult
) MemString () (? string)
115
func (@"".r·2 @"".
BenchmarkResult
) NsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return @"".r·2.T.Nanoseconds() / int64(@"".r·2.N) }
116
func (@"".r·2 @"".
BenchmarkResult
) String () (? string)
117
func (@"".r·2 @"".
BenchmarkResult
) @"".mbPerSec () (? float64) { if @"".r·2.Bytes <= 0x0 || @"".r·2.T <= @"time".Duration(0x0) || @"".r·2.N <= 0x0 { return 0 }; return float64(@"".r·2.Bytes) * float64(@"".r·2.N) / 12786682062094304179739022253232809188346257992355721833919106906625522642205759980012773798148063113870651109873281527379754908382364816614564560896000000p-492 / @"".r·2.T.Seconds() }
120
type @"".B struct { ? @"".common; N int; @"".previousN int; @"".previousDuration @"time".Duration; @"".benchmark @"".InternalBenchmark; @"".bytes int64; @"".timerOn bool; @"".showAllocResult bool; @"".result @"".
BenchmarkResult
; @"".parallelism int; @"".startAllocs uint64; @"".startBytes uint64; @"".netAllocs uint64; @"".netBytes uint64 }
130
func (@"".b·2 *@"".B) @"".run () (? @"".
BenchmarkResult
)
135
func @"".Benchmark (@"".f·2 func(@"".b *@"".B)) (? @"".
BenchmarkResult
)
[
all
...]
/prebuilts/go/linux-x86/pkg/linux_amd64_race/
testing.a
111
type @"".
BenchmarkResult
struct { N int; T @"time".Duration; Bytes int64; MemAllocs uint64; MemBytes uint64 }
112
func (@"".r·2 @"".
BenchmarkResult
) AllocedBytesPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemBytes) / int64(@"".r·2.N) }
113
func (@"".r·2 @"".
BenchmarkResult
) AllocsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return int64(@"".r·2.MemAllocs) / int64(@"".r·2.N) }
114
func (@"".r·2 @"".
BenchmarkResult
) MemString () (? string)
115
func (@"".r·2 @"".
BenchmarkResult
) NsPerOp () (? int64) { if @"".r·2.N <= 0x0 { return 0x0 }; return @"".r·2.T.Nanoseconds() / int64(@"".r·2.N) }
116
func (@"".r·2 @"".
BenchmarkResult
) String () (? string)
117
func (@"".r·2 @"".
BenchmarkResult
) @"".mbPerSec () (? float64) { if @"".r·2.Bytes <= 0x0 || @"".r·2.T <= @"time".Duration(0x0) || @"".r·2.N <= 0x0 { return 0 }; return float64(@"".r·2.Bytes) * float64(@"".r·2.N) / 12786682062094304179739022253232809188346257992355721833919106906625522642205759980012773798148063113870651109873281527379754908382364816614564560896000000p-492 / @"".r·2.T.Seconds() }
120
type @"".B struct { ? @"".common; N int; @"".previousN int; @"".previousDuration @"time".Duration; @"".benchmark @"".InternalBenchmark; @"".bytes int64; @"".timerOn bool; @"".showAllocResult bool; @"".result @"".
BenchmarkResult
; @"".parallelism int; @"".startAllocs uint64; @"".startBytes uint64; @"".netAllocs uint64; @"".netBytes uint64 }
130
func (@"".b·2 *@"".B) @"".run () (? @"".
BenchmarkResult
)
135
func @"".Benchmark (@"".f·2 func(@"".b *@"".B)) (? @"".
BenchmarkResult
)
[
all
...]
/external/v8/benchmarks/
base.js
49
function
BenchmarkResult
(benchmark, time) {
57
BenchmarkResult
.prototype.valueOf = function() {
225
this.NotifyStep(new
BenchmarkResult
(benchmark, usec));
/external/v8/test/js-perf-test/
base.js
44
function
BenchmarkResult
(benchmark, time, latency) {
53
BenchmarkResult
.prototype.valueOf = function() {
307
this.NotifyStep(new
BenchmarkResult
(benchmark, usec, rms));
/system/vold/
Benchmark.cpp
48
ResponseCode::
BenchmarkResult
, res.c_str(), false);
ResponseCode.h
86
static const int
BenchmarkResult
= 661;
/prebuilts/go/darwin-x86/doc/
go1.1.html
[
all
...]
/prebuilts/go/linux-x86/doc/
go1.1.html
[
all
...]
Completed in 477 milliseconds