Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DWavAnalyzer.java78 double[] coeffOfVar = new double[Common.PIP_NUM]; in isConsistent()
79 for (int i = 0; i < Common.PIP_NUM; i++) { in isConsistent()
148 noisePower = new double[Common.PIP_NUM][Common.NOISE_SAMPLES]; in measurePipStrength()
149 noiseDB = new double[Common.PIP_NUM]; in measurePipStrength()
157 for (int i = 0; i < Common.PIP_NUM; i++) { in measurePipStrength()
171 for (int i = 0; i < Common.PIP_NUM; i++) { in measurePipStrength()
181 power = new double[Common.PIP_NUM][Common.REPETITIONS]; in measurePipStrength()
182 for (int i = 0; i < Common.PIP_NUM * Common.REPETITIONS; i++) { in measurePipStrength()
183 if (i % Common.PIP_NUM == 0) { in measurePipStrength()
184 listener.sendMessage("#" + (i / Common.PIP_NUM + 1) + "\n"); in measurePipStrength()
[all …]
DHifiUltrasoundTestActivity.java163 + Common.PIP_NUM * (Common.PIP_DURATION_S + Common.PAUSE_DURATION_S) in onCreate()
220 Double[] frequencies = new Double[Common.PIP_NUM]; in plotResponse()
221 for (int i = 0; i < Common.PIP_NUM; i++) { in plotResponse()
229 Double[] powerWrap = new Double[Common.PIP_NUM]; in plotResponse()
230 for (int j = 0; j < Common.PIP_NUM; j++) { in plotResponse()
245 Double[] noiseDBWrap = new Double[Common.PIP_NUM]; in plotResponse()
246 for (int i = 0; i < Common.PIP_NUM; i++) { in plotResponse()
261 Double[] dBWrap = new Double[Common.PIP_NUM]; in plotResponse()
262 for (int i = 0; i < Common.PIP_NUM; i++) { in plotResponse()
DHifiUltrasoundSpeakerTestActivity.java184 + Common.PIP_NUM * (Common.PIP_DURATION_S + Common.PAUSE_DURATION_S) in onCreate()
262 Double[] frequencies = new Double[Common.PIP_NUM]; in plotResponse()
263 for (int i = 0; i < Common.PIP_NUM; i++) { in plotResponse()
271 Double[] powerWrap = new Double[Common.PIP_NUM]; in plotResponse()
272 for (int j = 0; j < Common.PIP_NUM; j++) { in plotResponse()
287 Double[] noiseDBWrap = new Double[Common.PIP_NUM]; in plotResponse()
288 for (int i = 0; i < Common.PIP_NUM; i++) { in plotResponse()
303 Double[] dBWrap = new Double[Common.PIP_NUM]; in plotResponse()
304 for (int i = 0; i < Common.PIP_NUM; i++) { in plotResponse()
DCommon.java36 public static final int PIP_NUM = FREQUENCIES_ORIGINAL.length; field in Common
132 int[] order = new int[REPETITIONS * PIP_NUM]; in order()
135 for (int i = 0; i < REPETITIONS * PIP_NUM; i++) { in order()
DSoundGenerator.java15 int pipNum = Common.PIP_NUM; in SoundGenerator()