HomeSort by relevance Sort by last modified time
    Searched full:ihigh (Results 1 - 11 of 11) sorted by null

  /cts/suite/audio_quality/test_description/processing/
check_spectrum.py 45 iHigh = N * fHigh / samplingRate + 1 # 1 for DC
46 if iHigh > (N / 2 + 1):
47 iHigh = N / 2 + 1
48 print fLow, iLow, fHigh, iHigh, samplingRate
57 print "Phh", abs(Phh[iLow:iHigh])
58 print "Pdd", abs(Pdd[iLow:iHigh])
59 amplitudeRatio = np.sqrt(abs(Pdd[iLow:iHigh]/Phh[iLow:iHigh]))
gen_random.py 36 iHigh = freqSamples * fHigh * 2 / samplingRate + 1
37 #print len(randomSignal), len(fftData), fLow, fHigh, iHigh
38 if iHigh > freqSamples - 1:
39 iHigh = freqSamples - 1
41 for i in range(iHigh, freqSamples - 1):
check_spectrum_playback.py 44 iHigh = N * fHigh / samplingRate + 1 # 1 for DC
45 if iHigh > (N / 2 + 1):
46 iHigh = N / 2 + 1
47 print fLow, iLow, fHigh, iHigh, samplingRate
53 print "Phh", abs(Phh[iLow:iHigh])
54 spectrum = np.sqrt(abs(Phh[iLow:iHigh]))
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/
g722_decode.c 248 int ihigh; local
287 ihigh = (code >> 6) & 0x03;
293 ihigh = (code >> 5) & 0x03;
299 ihigh = (code >> 4) & 0x03;
338 wd2 = qm2[ihigh];
349 wd2 = rh2[ihigh];
g722_encode.c 286 int ihigh; local
389 ihigh = (eh < 0) ? ihn[mih] : ihp[mih];
392 wd2 = qm2[ihigh];
396 ih2 = rh2[ihigh];
411 code = ((ihigh << 6) | ilow) >> (8 - s->bits_per_sample);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp 79 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh);
81 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh, Int range);
789 Int i, j, imin, jmin, ilow, ihigh, jlow, jhigh, iorg, jorg; local
812 ihigh = i0 + range - 1;
813 if (ihigh > width - 1)
814 ihigh = width - 1;
827 ihigh = i0 + range - 1;
828 if (ihigh > width - 16)
829 ihigh = width - 16;
847 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh)
    [all...]
findhalfpel.cpp 35 Int ilow, Int ihigh, Int jlow, Int jhigh);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 974 int i, j, imin, jmin, ilow, ihigh, jlow, jhigh; local
1022 ihigh = i0 + range - 1;
1023 if (ihigh - i0 > 2047) /* clip to conform with the standard */
1025 ihigh = i0 + 2047;
1027 if (ihigh > width - 3)
1029 ihigh = width - 3; // change from width-1 to width-3 for the same reason as above
    [all...]
avcenc_lib.h 566 \param "ilow, ihigh, jlow, jhigh" "Lower bound on search range."
572 int *imin, int *jmin, int ilow, int ihigh, int jlow, int jhigh,
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
MotionIndicatorView.java 350 int iHigh = Math.min(Math.round((high - mLow) / mStep), mCovered.length-1);
352 for (int i = iLow; i <= iHigh; ++i) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
commctrl.h     [all...]

Completed in 287 milliseconds