Searched refs:pct (Results 1 - 16 of 16) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dstat.c57 double pct = 0.0; local
60 pct = 100.0 * stddev/avg;
62 return pct;
/external/chromium_org/courgette/
H A Danalyze_stress_test92 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/
H A DDifferentialTest.h48 double pct = 100 * (double(count) / double(reps)); local
53 printf(" - %4.2f%%\n", pct );
68 double pct = 100 * (double(count) / double(reps)); local
73 printf(" - %4.2f%%\n", pct );
H A DStats.h179 double pct = worst * 100.0; local
181 printf("Worst bias is the %3d-bit window at bit %3d - %5.3f%%",worstWidth,worstStart,pct);
182 if(pct >= 1.0) printf(" !!!!! ");
/external/chromium_org/build/android/pylib/perf/
H A Dsurface_stats_collector.py136 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/
H A Drate_hist.c228 float pct; local
230 pct = (float)(100.0 * bucket[i].count / total);
243 fprintf(stderr, "\t%5d (%6.2f%%)\n", bucket[i].count, pct);
/external/libvpx/libvpx/
H A Drate_hist.c228 float pct; local
230 pct = (float)(100.0 * bucket[i].count / total);
243 fprintf(stderr, "\t%5d (%6.2f%%)\n", bucket[i].count, pct);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dbuildbot_results.py88 pct = len(results) * 100.0 / not_passing
89 self._print(" %5d %-24s (%4.1f%%)" % (len(results), desc, pct))
/external/llvm/utils/lit/lit/
H A Dutil.py137 pct = float(len(row)) / len(items)
138 w = int(barW * pct)
/external/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp564 double pct = (Stats.NumBits * 100.0) / BufferSizeBits; local
565 outs() << " Percent of file: " << format("%2.4f%%", pct) << "\n";
582 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords; local
583 outs() << " Percent Abbrevs: " << format("%2.4f%%", pct) << "\n";
/external/blktrace/btt/
H A Doutput.c524 double delta, pct; local
530 pct = 100.0 * (dip->plugged_time / delta);
534 dip->nplugs, dip->nplugs_t, pct);
540 dip->nplugs, dip->nplugs_t, pct);
546 plug_info.t_percent += pct;
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dbrowser.c282 int height = browser->height, h = 0, pct = 0, local
287 pct = ((browser->index * (browser->height - 1)) /
295 SLsmg_write_char(h == pct ? SLSMG_DIAMOND_CHAR : SLSMG_CKBRD_CHAR);
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-stat.c584 double pct = rel_stddev_stats(total, avg); local
587 fprintf(output, "%s%.2f%%", csv_sep, pct);
588 else if (pct)
589 fprintf(output, " ( +-%6.2f%% )", pct);
/external/chromium_org/v8/tools/
H A Dtickprocessor.js522 var pct = ticks * 100 / totalTicks;
527 padLeft(pct.toFixed(1), 5) + '% ' +
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_firstpass.c1174 const double pct = stats->pcnt_motion; local
1177 *mv_in_out = stats->mv_in_out_count * pct;
1183 if (pct > 0.05) {
1189 *mv_ratio_accumulator += pct * (mvr_ratio < stats->mvr_abs ?
1191 *mv_ratio_accumulator += pct * (mvc_ratio < stats->mvc_abs ?
/external/chromium_org/v8/src/heap/
H A Dspaces.cc797 float pct = static_cast<float>(capacity_ - size_) / capacity_; local
803 capacity_, size_, static_cast<int>(pct * 100));
1900 float pct = static_cast<float>(Available()) / TotalCapacity(); local
1904 TotalCapacity(), Available(), static_cast<int>(pct * 100));
2724 int pct = static_cast<int>(Available() * 100 / Capacity()); local
2730 Capacity(), Waste(), Available(), pct);

Completed in 723 milliseconds