HomeSort by relevance Sort by last modified time
    Searched defs:trials (Results 1 - 18 of 18) sorted by null

  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
InMemoryResultsUploader.java 32 * A {@link ResultProcessor} that collects all trials in a static list for easy inspection by tests.
35 static ImmutableList<Trial> trials() { method in class:InMemoryResultsUploader
36 return ImmutableList.copyOf(trials);
39 private static List<Trial> trials; field in class:InMemoryResultsUploader
43 trials = Lists.newArrayList();
53 trials.add(trial);
CaliperTestWatcher.java 108 ImmutableList<Trial> trials() { method in class:CaliperTestWatcher
109 return InMemoryResultsUploader.trials();
  /external/fec/
rs_speedtest.c 15 int trials = 10000; local
24 for(i=0;i<trials;i++){
34 printf("Execution time for %d Reed-Solomon blocks using general decoder: %.2f sec\n",trials,extime);
35 printf("decoder speed: %g bits/s\n",trials*223*8/extime);
40 for(i=0;i<trials;i++){
49 printf("Execution time for %d Reed-Solomon blocks using CCSDS decoder: %.2f sec\n",trials,extime);
50 printf("decoder speed: %g bits/s\n",trials*223*8/extime);
dtest.c 20 {"trials",0,NULL,'n'},
28 int trials=1000,d; local
53 trials = atoi(optarg);
58 while(trials--){
sumsq_test.c 29 int i,d,trial,trials=10000; local
64 trials = atoi(optarg);
77 for(trial=0;trial<trials;trial++){
81 for(trial=0;trial<trials;trial++){
vtest27.c 40 int sr=0,trials = 10000,errcnt,framebits=2048; local
82 trials = atoi(optarg);
111 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
113 for(tr=0;tr<trials;tr++){
154 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
157 tot_errs,(long long)framebits*trials,tot_errs/((double)framebits*trials),
163 /* Do time trials */
165 printf("Starting time trials\n");
167 for(tr=0;tr < trials;tr++)
    [all...]
vtest29.c 40 int sr=0,trials = 10000,errcnt,framebits=2048; local
82 trials = atoi(optarg);
111 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
113 for(tr=0;tr<trials;tr++){
154 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
157 tot_errs,(long long)framebits*trials,tot_errs/((double)framebits*trials),
162 /* Do time trials */
164 printf("Starting time trials\n");
166 for(tr=0;tr < trials;tr++)
    [all...]
vtest39.c 40 int sr=0,trials = 10000,errcnt,framebits=2048; local
82 trials = atoi(optarg);
111 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
113 for(tr=0;tr<trials;tr++){
155 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
158 tot_errs,(long long)framebits*trials,tot_errs/((double)framebits*trials),
163 /* Do time trials */
165 printf("Starting time trials\n");
167 for(tr=0;tr < trials;tr++)
    [all...]
vtest615.c 42 int sr=0,trials = 10,errcnt,framebits=2048; local
84 trials = atoi(optarg);
113 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
115 for(tr=0;tr<trials;tr++){
162 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
170 /* Do time trials */
172 printf("Starting time trials\n");
174 for(tr=0;tr < trials;tr++){
186 printf("Execution time for %d %d-bit frames: %.2f sec\n",trials,
188 printf("decoder speed: %g bits/s\n",trials*framebits/extime)
    [all...]
  /libcore/ojluni/src/main/java/java/io/
PipedInputStream.java 319 int trials = 2; local
325 if ((writeSide != null) && (!writeSide.isAlive()) && (--trials < 0)) {
PipedReader.java 248 int trials = 2; local
254 if ((writeSide != null) && (!writeSide.isAlive()) && (--trials < 0)) {
  /device/linaro/hikey/wpan/uim/
uim.c 475 int st_fd, err,trials; local
481 trials = 5;
502 while (trials > 0) {
506 if (trials == 3)
510 --trials;
  /external/caliper/caliper/src/main/java/com/google/caliper/options/
ParsedOptions.java 122 // Trials
125 private int trials = 1; field in class:ParsedOptions
127 @Option({"-t", "--trials"})
128 private void setTrials(int trials) throws InvalidCommandException {
129 dryRunIncompatible("trials");
130 if (trials < 1) {
131 throw new InvalidCommandException("trials must be at least 1: " + trials);
133 this.trials = trials;
    [all...]
  /external/valgrind/coregrind/
m_cache.c 120 Int i, j, trials; local
136 trials = info[0] - 1; /* AL register - bits 0..7 of %eax */
139 if (0 != trials) {
140 VG_(debugLog)(1, "cache", "warning: non-zero CPUID trials for Intel "
141 "processor (%d)\n", trials);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ExperimentingCaliperRun.java 54 * An execution of each {@link Experiment} for the configured number of trials.
153 List<ScheduledTrial> trials = createScheduledTrials(experimentsToRun, totalTrials); local
156 List<ListenableFuture<TrialResult>> pendingTrials = scheduleTrials(trials, executor);
200 * Schedule all the trials.
202 * <p>This method arranges all the {@link ScheduledTrial trials} to run according to their
205 private List<ListenableFuture<TrialResult>> scheduleTrials(List<ScheduledTrial> trials,
209 for (final ScheduledTrial scheduledTrial : trials) {
220 // each of these trials can only start after all prior trials have finished, so we use
240 List<ScheduledTrial> trials = Lists.newArrayListWithCapacity(totalTrials) local
    [all...]
  /frameworks/av/media/libaudioprocessing/tests/
test-resampler.cpp 390 * it is better to run a few trials with a shorter loop limit,
405 const int trials = 4; local
410 for (int n = 0; n < trials; ++n) {
421 time = diff_ns; // save the best out of our trials.
  /external/clang/tools/c-index-test/
c-index-test.c 4335 int trials = atoi(argv[2]); local
    [all...]
  /external/conscrypt/benchmark-android/
vogar.jar 

Completed in 419 milliseconds