/external/fec/ |
D | rs_speedtest.c | 15 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()
|
D | 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), 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);
|
D | 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), 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);
|
D | 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), 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);
|
D | 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); 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);
|
D | 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++){
|
D | dtest.c | 28 int trials=1000,d; local 53 trials = atoi(optarg); 58 while(trials--){
|
D | exercise.c | 41 int trials){ in EXERCISE() argument 55 while(trials-- != 0){ in EXERCISE()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/ |
D | BinomialDistributionImpl.java | 51 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()
|
D | BinomialDistribution.java | 51 void setNumberOfTrials(int trials); in setNumberOfTrials() argument
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | InMemoryResultsUploader.java | 35 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()
|
D | CaliperTestWatcher.java | 108 ImmutableList<Trial> trials() { in trials() method in CaliperTestWatcher 109 return InMemoryResultsUploader.trials(); in trials()
|
D | ArbitraryMeasurmentInstrumentTest.java | 45 Iterables.getOnlyElement(runner.trials()).measurements()); in testSuccess()
|
D | AllocationInstrumentTest.java | 73 Trial trial = Iterables.getOnlyElement(runner.trials()); in intrinsics()
|
/external/caliper/caliper/src/main/java/com/google/caliper/options/ |
D | ParsedOptions.java | 125 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/ |
D | ExperimentingCaliperRun.java | 153 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/ |
D | HashTestUtils.java | 288 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/ |
D | perfdiag.py | 1491 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/ |
D | m_cache.c | 120 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/ |
D | kmeans.cpp | 102 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/ |
D | global-config.properties | 79 # Sets the maximum number of trials that can run in parallel.
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 1632 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/ |
D | solving.rst | 959 found within this number of trials, the line search will stop.
|
/external/guava/guava-tests/test/com/google/common/io/testdata/ |
D | alice_in_wonderland.txt | 3229 read in the newspapers, at the end of trials, "There was some
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 3734 患難 < trials\-and\-tribulations; 26724 患難 > trials\-and\-tribulations;
|