Home
last modified time | relevance | path

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

/packages/apps/Gallery2/tests/src/com/android/gallery3d/util/
DProfileTest.java61 assertEquals(1, q.mEntries.get(0).sampleCount); in testProfile()
69 assertEquals(2, q.mEntries.get(0).sampleCount); in testProfile()
79 assertEquals(1, q.mEntries.get(0).sampleCount); in testProfile()
80 assertEquals(1, q.mEntries.get(1).sampleCount); in testProfile()
89 assertEquals(1, q.mEntries.get(0).sampleCount); in testProfile()
97 assertEquals(1, q.mEntries.get(0).sampleCount); in testProfile()
98 assertEquals(1, q.mEntries.get(0).sampleCount); in testProfile()
107 int sampleCount; field in ParsedProfile.Entry
124 if (entry.sampleCount == 0) { in ParsedProfile()
142 Assert.assertEquals(0, entry.sampleCount); in checkIsFirstEntry()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DProfileData.java39 public int sampleCount; field in ProfileData.Node
98 node.sampleCount++; in addSample()
131 writeInt(node.sampleCount); in writeOneStack()
140 if (node.sampleCount > 0) { in writeAllStacks()
/packages/apps/VoiceDialer/src/com/android/voicedialer/
DVoiceDialerActivity.java635 int sampleCount = ((mSampleRate / SINE_FREQ) * NUM_PERIODS_BLOCK); in skipBeep() local
636 int blockSize = 2 * sampleCount; // energy averaging block in skipBeep()
650 int threshold = THRESHOLD*sampleCount; // absolute energy threshold in skipBeep()
673 long energy = (sumxx*sampleCount - sumx*sumx)/(sampleCount*sampleCount); in skipBeep()