Home
last modified time | relevance | path

Searched refs:totals (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/backup/encryption/chunking/cdc/
DFingerprintMixerTest.java141 int[] totals = new int[64]; in mix_randomlyDistributesBits() local
147 totals[j] += bit; in mix_randomlyDistributesBits()
152 float mean = ((float) totals[i]) / iterations; in mix_randomlyDistributesBits()
/frameworks/base/core/java/android/view/
DWindowManagerGlobal.java623 ViewRootImpl.GfxInfo totals = new ViewRootImpl.GfxInfo(); in dumpGfxInfo() local
628 totals.add(info); in dumpGfxInfo()
637 pw.printf("Total %-15s: %d\n", "attached Views", totals.viewCount); in dumpGfxInfo()
639 totals.renderNodeMemoryUsage / 1024.0f, in dumpGfxInfo()
640 totals.renderNodeMemoryAllocated / 1024.0f); in dumpGfxInfo()
/frameworks/base/core/java/com/android/internal/app/procstats/
DProcessState.java1101 ProcessStats.ProcessDataCollection totals = new ProcessStats.ProcessDataCollection( in dumpProcessSummaryDetails() local
1103 computeProcessData(totals, now); in dumpProcessSummaryDetails()
1104 final double percentage = (double) totals.totalTime / (double) totalTime * 100; in dumpProcessSummaryDetails()
1106 if (percentage >= 0.005 || totals.numPss != 0) { in dumpProcessSummaryDetails()
1115 totals.print(pw, totalTime, full); in dumpProcessSummaryDetails()