HomeSort by relevance Sort by last modified time
    Searched defs:percentage (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/clang/test/PCH/
objc_property.h 5 float percentage; variable
11 @property float percentage; variable
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/
count_instructions.c 33 double percentage; local
47 percentage = (double)difference / events[0].result.value * 100;
56 printf("Delta %lld, %f%%\n", difference, percentage);
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
instruction_count_test.c 29 double percentage; local
48 percentage = (double)difference / event->result.value * 100;
54 printf("Delta %ld, %f%%\n", difference, percentage);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/
StorageSettingsTest.java 89 final String percentage = NumberFormat.getPercentInstance().format(1); local
93 R.string.storage_summary, percentage, freeSpace));
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/graph/
dotgraph.go 157 strings.TrimSpace(percentage(flat, b.config.Total)))
171 strings.TrimSpace(percentage(cum, b.config.Total)))
174 // Scale font sizes from 8 to 24 based on percentage of flat frequency.
383 // percentage computes the percentage of total of a value, and encodes
385 func percentage(value, total int64) string { func
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/graph/
dotgraph.go 157 strings.TrimSpace(percentage(flat, b.config.Total)))
171 strings.TrimSpace(percentage(cum, b.config.Total)))
174 // Scale font sizes from 8 to 24 based on percentage of flat frequency.
383 // percentage computes the percentage of total of a value, and encodes
385 func percentage(value, total int64) string { func
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/
RobustnessTest.java 138 float percentage = (failedRotations / totalRotations) * 100; local
143 if (percentage > MAXIMUM_PERCENT_ROTATION_FAILURE) {
145 recordRotationTestResults(percentage, failedRotations, totalRotations);
151 Log.d("rotationResult", "" + percentage);
159 * @param percentFailed Percentage of failed rotations
  /external/expat/tests/
minicheck.c 205 double percentage = ((double) passed) / runner->nchecks; local
206 int display = (int) (percentage * 100);
  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 211 int percentage = nativePercentageOfResidentNativeLibraryCode(); local
213 // Arbitrary percentage threshold. If most of the native library is already
215 boolean prefetch = coldStart && percentage < 90;
228 if (percentage != -1) {
231 RecordHistogram.recordPercentageHistogram(histogram, percentage);
513 // Returns the percentage of the native library code page that are currently reseident in
  /external/perfetto/src/base/
watchdog_posix.cc 108 void Watchdog::SetCpuLimit(uint32_t percentage, uint32_t window_ms) {
111 PERFETTO_CHECK(percentage <= 100);
113 percentage == 0);
115 size_t size = percentage == 0 ? 0 : window_ms / polling_interval_ms_ + 1;
117 cpu_limit_percentage_ = percentage;
183 // Compute the percentage over the whole window and check that it remains
191 double percentage = static_cast<double>(difference_ticks) / local
193 if (percentage > cpu_limit_percentage_) {
196 percentage, cpu_limit_percentage_);
  /external/skia/tools/calmbench/
ab.py 257 def percentage(x): function
262 return ('%6.2f' % percentage(r)) + "%"
  /external/skqp/tools/calmbench/
ab.py 257 def percentage(x): function
262 return ('%6.2f' % percentage(r)) + "%"
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PercentageBarChart.java 44 public final float percentage; field in class:PercentageBarChart.Entry
47 protected Entry(int order, float percentage, Paint paint) {
49 this.percentage = percentage;
89 if (e.percentage == 0.0f) {
92 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
113 if (e.percentage == 0.0f) {
116 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
144 * Adds a new slice to the percentage bar chart. Callers are responsible for
147 * @param percentage the total width tha
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
EmmaXmlReportParser.java 116 * Parse the percentage coverage from the XML value.
122 String percentage = null; local
125 percentage = m.group(1);
127 if (percentage != null) {
128 mSummaryMetrics.put(label, percentage);
129 CLog.d("Found: %s: %s", label, percentage);
  /frameworks/av/media/libmediaplayer2/nuplayer2/
HTTPLiveSource2.cpp 417 int32_t percentage; local
418 CHECK(msg->findInt32("percentage", &percentage));
420 notify->setInt32("percentage", percentage);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
HTTPLiveSource.cpp 416 int32_t percentage; local
417 CHECK(msg->findInt32("percentage", &percentage));
419 notify->setInt32("percentage", percentage);
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
UtilsTest.java 130 final String percentage = Utils.formatPercentage(TEST_PERCENTAGES[i], true); local
131 assertThat(percentage).isEqualTo(expectedPercentages[i]);
142 final String percentage = Utils.formatPercentage(TEST_PERCENTAGES[i], false); local
143 assertThat(percentage).isEqualTo(expectedPercentages[i]);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
NotificationImportExportListener.java 234 String percentage = local
236 builder.setContentText(percentage);
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 428 percentage(cumSum, rpt.total))
707 fmt.Fprintf(tabw, " \t%.1f%s (%s):\t %s\n", f, u, percentage(t.FlatValue(), total), t.Name)
792 item.FlatFormat, percentage(item.Flat, rpt.total),
793 percentage(flatSum, rpt.total),
794 item.CumFormat, percentage(item.Cum, rpt.total),
1033 percentage(in.Weight, cum), in.Src.Info.PrintableName(), inline)
1040 percentage(flat, rpt.total),
1041 percentage(flatSum, rpt.total),
1043 percentage(cum, rpt.total),
1054 percentage(out.Weight, cum), out.Dest.Info.PrintableName(), inline
1088 func percentage(value, total int64) string { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 428 percentage(cumSum, rpt.total))
707 fmt.Fprintf(tabw, " \t%.1f%s (%s):\t %s\n", f, u, percentage(t.FlatValue(), total), t.Name)
792 item.FlatFormat, percentage(item.Flat, rpt.total),
793 percentage(flatSum, rpt.total),
794 item.CumFormat, percentage(item.Cum, rpt.total),
1033 percentage(in.Weight, cum), in.Src.Info.PrintableName(), inline)
1040 percentage(flat, rpt.total),
1041 percentage(flatSum, rpt.total),
1043 percentage(cum, rpt.total),
1054 percentage(out.Weight, cum), out.Dest.Info.PrintableName(), inline
1088 func percentage(value, total int64) string { func
    [all...]
  /system/extras/simpleperf/
SampleDisplayer.h 35 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; local
36 return android::base::StringPrintf("%.2f%%", percentage);
48 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; local
49 return android::base::StringPrintf("%.2f%%", percentage);
142 double percentage = local
144 if (percentage < percent_limit_) {
147 percentage_s = android::base::StringPrintf("--%.2f%%-- ", percentage);
  /external/fio/t/
genzipf.c 55 static double percentage; variable
95 printf("\t-p\tGenerate size of data set that are hit by this percentage\n");
116 percentage = atof(optarg);
197 unsigned long blocks = percentage * nnodes / 100;
228 if (percentage) {
242 printf("%.2f%% of hits satisfied in %.3f%cB of cache\n", percentage, cs, p);
243 percentage = 0.0;
  /external/jdiff/src/jdiff/
APIComparator.java 137 Double percentage = new Double(differs); local
138 int approxPercentage = percentage.intValue();
140 System.out.println(" Approximately " + percentage + "% difference between the APIs");
    [all...]
  /external/tensorflow/tensorflow/core/util/
stat_summarizer.cc 264 const double percentage = detail.rel_end_us.sum() * 100.0 / stat.sum(); local
273 InitField(stream, 7) << percentage << "%";
398 const float percentage = local
400 cdf += percentage;
405 InitField(stream, 10) << percentage << "%";
  /hardware/google/av/codec2/vndk/bufferpool/
AccessorImpl.cpp 241 int percentage(T base, S total) { function in namespace:android::hardware::media::bufferpool::V1_0::implementation
252 mStats.mBuffersInUse, percentage(mStats.mBuffersInUse, mStats.mBuffersCached),
253 mStats.mTotalAllocations, percentage(mStats.mTotalRecycles, mStats.mTotalAllocations),
255 percentage(mStats.mTotalTransfers - mStats.mTotalFetches, mStats.mTotalTransfers));

Completed in 888 milliseconds

1 2 3