Home
last modified time | relevance | path

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

/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DCpuMonitor.java186 double percentFreq; in sampleCpuUtilization() local
188 percentFreq = (lastPercentFreq + newPercentFreq) * 0.5; in sampleCpuUtilization()
190 percentFreq = newPercentFreq; in sampleCpuUtilization()
206 int percent = allTime == 0 ? 0 : (int) Math.round(percentFreq * diffRunTime / allTime); in sampleCpuUtilization()