Searched defs:cpuFreq (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DCpuMonitor.java70 private long[] cpuFreq; field in class:CpuMonitor
111 cpuFreq = new long [cpusPresent];
115 cpuFreq[i] = 0; // Frequency "not yet determined".
146 * save it in cpuFreq[].
149 if (cpuFreq[i] == 0) {
154 cpuFreq[i] = cpufreqMax;
158 lastSeenMaxFreq = cpuFreq[i]; // A valid, previously read value.
165 * 1. cpuFreq[i], or
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp62 static void SetComplexCommands(UInt32 complexInSeconds, UInt64 cpuFreq, UInt64 &complexInCommands) argument
67 if (cpuFreq < kMinFreq) cpuFreq = kMinFreq;
68 if (cpuFreq < kMaxFreq)
71 complexInCommands = complexInSeconds * cpuFreq;
73 complexInCommands = cpuFreq >> 2;
1596 static void PrintResults(IBenchPrintCallback &f, UInt64 usage, UInt64 rpu, UInt64 rating, bool showFreq, UInt64 cpuFreq)
1603 if (cpuFreq == 0)
1607 UInt64 ddd = cpuFreq * usage / 100;
1611 PrintPercents(f, rating, cpuFreq, kFieldSize_Effe
[all...]

Completed in 121 milliseconds