Searched defs:reps (Results 1 - 25 of 110) sorted by relevance

12345

/external/caliper/examples/src/main/java/examples/
H A DNoOpBenchmark.java25 @Benchmark long increment(long reps) { argument
27 for (; result < reps; result++) {}
H A DMessageDigestCreationBenchmark.java33 @Benchmark void time(int reps) throws Exception { argument
35 for (int i = 0; i < reps; i++) {
H A DLoopingBackwardsBenchmark.java28 @Benchmark int forwards(int reps) { argument
30 for (int i = 0; i < reps; i++) {
38 @Benchmark int backwards(int reps) { argument
40 for (int i = 0; i < reps; i++) {
H A DContainsBenchmark.java53 @Benchmark void contains(int reps) { argument
54 for (int i = 0; i < reps; i++) {
H A DExpensiveObjectsBenchmark.java30 @Benchmark void newDecimalFormatSymbols(int reps) { argument
31 for (int i = 0; i < reps; ++i) {
36 @Benchmark void clonedDecimalFormatSymbols(int reps) { argument
38 for (int i = 0; i < reps; ++i) {
43 @Benchmark void newNumberFormat(int reps) { argument
44 for (int i = 0; i < reps; ++i) {
49 @Benchmark void clonedNumberFormat(int reps) { argument
51 for (int i = 0; i < reps; ++i) {
56 @Benchmark void newSimpleDateFormat(int reps) { argument
57 for (int i = 0; i < reps;
62 clonedSimpleDateFormat(int reps) argument
[all...]
H A DFormatterBenchmark.java26 @Benchmark void formatter_NoFormatting(int reps) { argument
27 for (int i = 0; i < reps; i++) {
34 @Benchmark void stringBuilder_NoFormatting(int reps) { argument
35 for (int i = 0; i < reps; i++) {
41 @Benchmark void formatter_OneInt(int reps) { argument
42 for (int i = 0; i < reps; i++) {
49 @Benchmark void stringBuilder_OneInt(int reps) { argument
50 for (int i = 0; i < reps; i++) {
58 @Benchmark void formatter_OneString(int reps) { argument
59 for (int i = 0; i < reps;
66 stringBuilder_OneString(int reps) argument
[all...]
H A DListIterationBenchmark.java54 @Benchmark int listIteration(int reps) { argument
56 for (int i = 0; i < reps; i++) {
64 @Benchmark int arrayIteration(int reps) { argument
66 for (int i = 0; i < reps; i++) {
H A DArraySortBenchmark.java43 @Benchmark void sort(int reps) { argument
44 for (int i = 0; i < reps; i++) {
H A DBitSetBenchmark.java104 @Benchmark int setBitSetX64(int reps) { argument
105 long count = 64L * reps;
115 @Benchmark long setMaskX64(int reps) { argument
116 long count = 64L * reps;
129 @Benchmark String charsToBitSet(int reps) { argument
135 for (int i = 0; i < reps; i++) {
148 @Benchmark long charsToMask(int reps) { argument
154 for (int i = 0; i < reps; i++) {
174 @Benchmark long baselineIteration(int reps) { argument
176 for (int i = 0; i < reps;
[all...]
H A DCompressionSizeBenchmark.java52 @Benchmark long simpleCompression(int reps) { argument
54 for (int i = 0; i < reps; i++) {
H A DDoubleToStringBenchmark2.java43 @Benchmark int toString(int reps) { argument
47 for (int i = 0; i < reps; i++) {
52 for (int i = 0; i < reps; i++) {
59 @Benchmark int stringValueOf(int reps) { argument
63 for (int i = 0; i < reps; i++) {
68 for (int i = 0; i < reps; i++) {
75 @Benchmark int stringFormat(int reps) { argument
79 for (int i = 0; i < reps; i++) {
84 for (int i = 0; i < reps; i++) {
91 @Benchmark int quoteTrick(int reps) { argument
[all...]
H A DIntModBenchmark.java28 @Benchmark int conditional(int reps) { argument
30 for (int i = 0; i < reps; i++) {
41 @Benchmark int doubleRemainder(int reps) { argument
43 for (int i = 0; i < reps; i++) {
54 @Benchmark int rightShiftingMod(int reps) { argument
56 for (int i = 0; i < reps; i++) {
68 @Benchmark int leftShiftingMod(int reps) { argument
70 for (int i = 0; i < reps; i++) {
81 @Benchmark int wrongMod(int reps) { argument
83 for (int i = 0; i < reps;
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DAllocationRecorder.java58 * @param reps The number of reps that the previous set of allocation represents.
60 abstract AllocationStats stopRecording(int reps); argument
H A DAggregateAllocationsRecorder.java56 @Override public AllocationStats stopRecording(int reps) { argument
59 return new AllocationStats(allocationCount.get(), allocationSize.get(), reps);
H A DAllAllocationsRecorder.java85 @Override public AllocationStats stopRecording(int reps) { argument
88 return new AllocationStats(allocations, reps);
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DStopwatchBenchmark.java32 @Benchmark long stopwatch(int reps) { argument
34 for (int i = 0; i < reps; i++) {
42 @Benchmark long manual(int reps) { argument
44 for (int i = 0; i < reps; i++) {
H A DSplitterBenchmark.java44 @Benchmark void charSplitter(int reps) { argument
47 for (int i = 0; i < reps; i++) {
52 @Benchmark void stringSplitter(int reps) { argument
55 for (int i = 0; i < reps; i++) {
H A DStringsRepeatBenchmark.java39 @Benchmark void oldRepeat(int reps) { argument
40 for (int i = 0; i < reps; i++) {
47 @Benchmark void mikeRepeat(int reps) { argument
48 for (int i = 0; i < reps; i++) {
55 @Benchmark void martinRepeat(int reps) { argument
56 for (int i = 0; i < reps; i++) {
/external/guava/guava-tests/benchmark/com/google/common/cache/
H A DSegmentBenchmark.java55 @Benchmark int time(int reps) { argument
58 for (int i = 0; i < reps; i++) {
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DInternersBenchmark.java27 @Benchmark int weakInterner(int reps) { argument
29 for (int i = 0; i < reps; i++) {
32 return reps;
35 @Benchmark int strongInterner(int reps) { argument
37 for (int i = 0; i < reps; i++) {
40 return reps;
44 @Benchmark int stringIntern(int reps) { argument
45 for (int i = 0; i < reps; i++) {
48 return reps;
H A DPowerSetBenchmark.java42 @Benchmark int iteration(int reps) { argument
44 for (int i = 0; i < reps; i++) {
/external/v8/src/
H A Dsignature.h17 Signature(size_t return_count, size_t parameter_count, T* reps) argument
20 reps_(reps) {}
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
H A DAllocationInstrumentTest.java88 @Benchmark public int compressionSize(int reps) { argument
89 for (int i = 0; i < reps; i++) {
104 @Benchmark void benchmarkGrowth(int reps) { argument
105 for (int i = 0; i < reps; i++) {
/external/caliper/tutorial/
H A DTutorial.java37 * which accepts a single 'int reps' parameter.
39 * 'reps' times.
53 @Benchmark void timeNanoTime(int reps) { argument
54 for (int i = 0; i < reps; i++) {
74 @Benchmark void timeNanoTime(int reps) { argument
75 for (int i = 0; i < reps; i++) {
79 @Benchmark void timeCurrentTimeMillis(int reps) { argument
80 for (int i = 0; i < reps; i++) {
94 @Benchmark void timeArrayIteration_BAD(int reps) { argument
95 for (int i = 0; i < reps;
130 timeArrayIteration_fixed(int reps) argument
178 timeArrayIteration(int reps) argument
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A DSTL_timer.hh35 reps = r;
38 iterations.reserve(reps);
57 return (iterations.size() < reps);
63 return 1.0/iterations[reps/2];
66 unsigned int reps; // Number of trials member in class:STL_Timer

Completed in 251 milliseconds

12345