Home
last modified time | relevance | path

Searched refs:trials (Results 1 – 25 of 26) sorted by relevance

12

/external/fec/
Drs_speedtest.c15 int trials = 10000; in main() local
24 for(i=0;i<trials;i++){ in main()
34 …printf("Execution time for %d Reed-Solomon blocks using general decoder: %.2f sec\n",trials,extime… in main()
35 printf("decoder speed: %g bits/s\n",trials*223*8/extime); in main()
40 for(i=0;i<trials;i++){ in main()
49 printf("Execution time for %d Reed-Solomon blocks using CCSDS decoder: %.2f sec\n",trials,extime); in main()
50 printf("decoder speed: %g bits/s\n",trials*223*8/extime); in main()
Dvtest29.c40 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),
166 for(tr=0;tr < trials;tr++){
178 printf("Execution time for %d %d-bit frames: %.2f sec\n",trials,
180 printf("decoder speed: %g bits/s\n",trials*framebits/extime);
Dvtest27.c40 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),
167 for(tr=0;tr < trials;tr++){
179 printf("Execution time for %d %d-bit frames: %.2f sec\n",trials,
181 printf("decoder speed: %g bits/s\n",trials*framebits/extime);
Dvtest39.c40 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),
167 for(tr=0;tr < trials;tr++){
179 printf("Execution time for %d %d-bit frames: %.2f sec\n",trials,
181 printf("decoder speed: %g bits/s\n",trials*framebits/extime);
Dvtest615.c42 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);
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);
Dsumsq_test.c29 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++){
Ddtest.c28 int trials=1000,d; local
53 trials = atoi(optarg);
58 while(trials--){
Dexercise.c41 int trials){ in EXERCISE() argument
55 while(trials-- != 0){ in EXERCISE()
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
DBinomialDistributionImpl.java51 public BinomialDistributionImpl(int trials, double p) { in BinomialDistributionImpl() argument
53 setNumberOfTrialsInternal(trials); in BinomialDistributionImpl()
84 public void setNumberOfTrials(int trials) { in setNumberOfTrials() argument
85 setNumberOfTrialsInternal(trials); in setNumberOfTrials()
95 private void setNumberOfTrialsInternal(int trials) { in setNumberOfTrialsInternal() argument
96 if (trials < 0) { in setNumberOfTrialsInternal()
98 LocalizedFormats.NEGATIVE_NUMBER_OF_TRIALS, trials); in setNumberOfTrialsInternal()
100 numberOfTrials = trials; in setNumberOfTrialsInternal()
DBinomialDistribution.java51 void setNumberOfTrials(int trials); in setNumberOfTrials() argument
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DInMemoryResultsUploader.java35 static ImmutableList<Trial> trials() { in trials() method in InMemoryResultsUploader
36 return ImmutableList.copyOf(trials); in trials()
39 private static List<Trial> trials; field in InMemoryResultsUploader
43 trials = Lists.newArrayList(); in InMemoryResultsUploader()
53 trials.add(trial); in processTrial()
DCaliperTestWatcher.java108 ImmutableList<Trial> trials() { in trials() method in CaliperTestWatcher
109 return InMemoryResultsUploader.trials(); in trials()
DArbitraryMeasurmentInstrumentTest.java45 Iterables.getOnlyElement(runner.trials()).measurements()); in testSuccess()
DAllocationInstrumentTest.java73 Trial trial = Iterables.getOnlyElement(runner.trials()); in intrinsics()
/external/caliper/caliper/src/main/java/com/google/caliper/options/
DParsedOptions.java125 private int trials = 1; field in ParsedOptions
128 private void setTrials(int trials) throws InvalidCommandException { in setTrials() argument
130 if (trials < 1) { in setTrials()
131 throw new InvalidCommandException("trials must be at least 1: " + trials); in setTrials()
133 this.trials = trials; in setTrials()
137 return trials; in trialsPerScenario()
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DExperimentingCaliperRun.java153 List<ScheduledTrial> trials = createScheduledTrials(experimentsToRun, totalTrials); in run() local
156 List<ListenableFuture<TrialResult>> pendingTrials = scheduleTrials(trials, executor); in run()
205 private List<ListenableFuture<TrialResult>> scheduleTrials(List<ScheduledTrial> trials, in scheduleTrials() argument
209 for (final ScheduledTrial scheduledTrial : trials) { in scheduleTrials()
240 List<ScheduledTrial> trials = Lists.newArrayListWithCapacity(totalTrials); in createScheduledTrials() local
249 trials.add(trialScopeComponent.getScheduledTrial()); in createScheduledTrials()
255 return trials; in createScheduledTrials()
/external/guava/guava-tests/test/com/google/common/hash/
DHashTestUtils.java288 static void checkAvalanche(HashFunction function, int trials, double epsilon) { in checkAvalanche() argument
296 for (int j = 0; j < trials; j++) { in checkAvalanche()
375 static void check2BitAvalanche(HashFunction function, int trials, double epsilon) { in check2BitAvalanche() argument
386 for (int j = 0; j < trials; j++) { in check2BitAvalanche()
478 private static void assertShortcutsAreEquivalent(HashFunction hashFunction, int trials) { in assertShortcutsAreEquivalent() argument
480 for (int i = 0; i < trials; i++) { in assertShortcutsAreEquivalent()
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
Dperfdiag.py1491 def _DisplayStats(self, trials): argument
1493 n = len(trials)
1494 mean = float(sum(trials)) / n
1495 stdev = math.sqrt(sum((x - mean)**2 for x in trials) / n)
1500 print ('%.1f' % (Percentile(trials, 0.5) * 1000)).rjust(11), '',
1501 print ('%.1f' % (Percentile(trials, 0.9) * 1000)).rjust(11), ''
1520 trials = sorted(self.results['latency'][key])
1526 self._DisplayStats(trials)
1530 self._DisplayStats(trials)
1534 self._DisplayStats(trials)
[all …]
/external/valgrind/coregrind/
Dm_cache.c120 Int i, j, trials; in Intel_cache_info() local
136 trials = info[0] - 1; /* AL register - bits 0..7 of %eax */ in Intel_cache_info()
139 if (0 != trials) { in Intel_cache_info()
141 "processor (%d)\n", trials); in Intel_cache_info()
/external/opencv3/modules/core/src/
Dkmeans.cpp102 int K, RNG& rng, int trials) in generateCentersPP() argument
126 for( j = 0; j < trials; j++ ) in generateCentersPP()
/external/caliper/caliper/src/main/resources/com/google/caliper/config/
Dglobal-config.properties79 # Sets the maximum number of trials that can run in parallel.
/external/clang/tools/c-index-test/
Dc-index-test.c1632 int perform_test_reparse_source(int argc, const char **argv, int trials, in perform_test_reparse_source() argument
1686 for (trial = 0; trial < trials; ++trial) { in perform_test_reparse_source()
4173 int trials = atoi(argv[2]); in cindextest_main() local
4174 return perform_test_reparse_source(argc - 4, argv + 4, trials, argv[3], I, in cindextest_main()
/external/ceres-solver/docs/source/
Dsolving.rst959 found within this number of trials, the line search will stop.
/external/guava/guava-tests/test/com/google/common/io/testdata/
Dalice_in_wonderland.txt3229 read in the newspapers, at the end of trials, "There was some
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt3734 患難 < trials\-and\-tribulations;
26724 患難 > trials\-and\-tribulations;

12