/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | stat.c | 57 double pct = 0.0; in rel_stddev_stats() local 60 pct = 100.0 * stddev/avg; in rel_stddev_stats() 62 return pct; in rel_stddev_stats()
|
/external/chromium_org/courgette/ |
D | analyze_stress_test | 92 local pct="$(echo "100*${best_total}/${bsdiff_total}" \ 95 echo "${pct}% of a bsdiff-only payload (bz2)" 97 local pct="$(echo "100*${best_total_xz}/${bsdiff_total}" \ 100 echo "${pct}% of a bsdiff-only payload (xz)"
|
/external/chromium_org/third_party/smhasher/src/ |
D | DifferentialTest.h | 48 double pct = 100 * (double(count) / double(reps)); in ProcessDifferentials() local 53 printf(" - %4.2f%%\n", pct ); in ProcessDifferentials() 68 double pct = 100 * (double(count) / double(reps)); in ProcessDifferentials() local 73 printf(" - %4.2f%%\n", pct ); in ProcessDifferentials()
|
D | Stats.h | 179 double pct = worst * 100.0; in TestDistribution() local 181 printf("Worst bias is the %3d-bit window at bit %3d - %5.3f%%",worstWidth,worstStart,pct); in TestDistribution() 182 if(pct >= 1.0) printf(" !!!!! "); in TestDistribution()
|
/external/chromium_org/build/android/pylib/perf/ |
D | surface_stats_collector.py | 136 for pct in [0.99, 0.5]: 137 sliced = timestamps[min(int(-pct * len(timestamps)), -3) : ] 139 refresh_period, sliced, '_' + str(int(pct * 100)))
|
/external/chromium_org/third_party/libvpx/source/libvpx/ |
D | rate_hist.c | 228 float pct; in show_histogram() local 230 pct = (float)(100.0 * bucket[i].count / total); in show_histogram() 243 fprintf(stderr, "\t%5d (%6.2f%%)\n", bucket[i].count, pct); in show_histogram()
|
/external/libvpx/libvpx/ |
D | rate_hist.c | 228 float pct; in show_histogram() local 230 pct = (float)(100.0 * bucket[i].count / total); in show_histogram() 243 fprintf(stderr, "\t%5d (%6.2f%%)\n", bucket[i].count, pct); in show_histogram()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/ |
D | buildbot_results.py | 88 pct = len(results) * 100.0 / not_passing 89 self._print(" %5d %-24s (%4.1f%%)" % (len(results), desc, pct))
|
/external/llvm/utils/lit/lit/ |
D | util.py | 137 pct = float(len(row)) / len(items) 138 w = int(barW * pct)
|
/external/llvm/tools/llvm-bcanalyzer/ |
D | llvm-bcanalyzer.cpp | 564 double pct = (Stats.NumBits * 100.0) / BufferSizeBits; in AnalyzeBitcode() local 565 outs() << " Percent of file: " << format("%2.4f%%", pct) << "\n"; in AnalyzeBitcode() 582 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords; in AnalyzeBitcode() local 583 outs() << " Percent Abbrevs: " << format("%2.4f%%", pct) << "\n"; in AnalyzeBitcode()
|
/external/blktrace/btt/ |
D | output.c | 524 double delta, pct; in __dip_output_plug() local 530 pct = 100.0 * (dip->plugged_time / delta); in __dip_output_plug() 534 dip->nplugs, dip->nplugs_t, pct); in __dip_output_plug() 540 dip->nplugs, dip->nplugs_t, pct); in __dip_output_plug() 546 plug_info.t_percent += pct; in __dip_output_plug()
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/ |
D | browser.c | 282 int height = browser->height, h = 0, pct = 0, in ui_browser__scrollbar_set() local 287 pct = ((browser->index * (browser->height - 1)) / in ui_browser__scrollbar_set() 295 SLsmg_write_char(h == pct ? SLSMG_DIAMOND_CHAR : SLSMG_CKBRD_CHAR); in ui_browser__scrollbar_set()
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
D | builtin-stat.c | 584 double pct = rel_stddev_stats(total, avg); in print_noise_pct() local 587 fprintf(output, "%s%.2f%%", csv_sep, pct); in print_noise_pct() 588 else if (pct) in print_noise_pct() 589 fprintf(output, " ( +-%6.2f%% )", pct); in print_noise_pct()
|
/external/chromium_org/v8/tools/ |
D | tickprocessor.js | 522 var pct = ticks * 100 / totalTicks; 527 padLeft(pct.toFixed(1), 5) + '% ' +
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_firstpass.c | 1174 const double pct = stats->pcnt_motion; in accumulate_frame_motion_stats() local 1177 *mv_in_out = stats->mv_in_out_count * pct; in accumulate_frame_motion_stats() 1183 if (pct > 0.05) { in accumulate_frame_motion_stats() 1189 *mv_ratio_accumulator += pct * (mvr_ratio < stats->mvr_abs ? in accumulate_frame_motion_stats() 1191 *mv_ratio_accumulator += pct * (mvc_ratio < stats->mvc_abs ? in accumulate_frame_motion_stats()
|
/external/chromium_org/v8/src/heap/ |
D | spaces.cc | 797 float pct = static_cast<float>(capacity_ - size_) / capacity_; in ReportStatistics() local 803 capacity_, size_, static_cast<int>(pct * 100)); in ReportStatistics() 1900 float pct = static_cast<float>(Available()) / TotalCapacity(); in ReportStatistics() local 1904 TotalCapacity(), Available(), static_cast<int>(pct * 100)); in ReportStatistics() 2724 int pct = static_cast<int>(Available() * 100 / Capacity()); in ReportStatistics() local 2730 Capacity(), Waste(), Available(), pct); in ReportStatistics()
|
/external/chromium_org/tools/python/google/httpd_config/ |
D | mime.types | 461 image/pict pict pic pct
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/resources/ |
D | final-url-en | 27543 http://www.bensonassoc.com/pct/teapast11.html 27544 http://www.bensonassoc.com/pct/teapast19.html 63674 http://www.pct.edu/annualfund/planned_giving.htm 79092 http://www.wandsworth-pct.nhs.uk/work/ppi/Copyingletters.asp
|