HomeSort by relevance Sort by last modified time
    Searched defs:peak (Results 1 - 13 of 13) sorted by null

  /external/fec/
peakval_mmx.c 10 int peak = 0; local
15 if(a > peak)
16 peak = a;
21 if(a > peak)
22 peak = a;
28 if(a > peak)
29 peak = a;
33 return peak;
peakval_port.c 7 int peak = 0; local
12 if(a > peak)
13 peak = a;
15 return peak;
peakval_sse.c 11 int peak = 0; local
16 if(a > peak)
17 peak = a;
22 if(a > peak)
23 peak = a;
29 if(a > peak)
30 peak = a;
34 return peak;
peakval_sse2.c 10 int peak = 0; local
15 if(a > peak)
16 peak = a;
21 if(a > peak)
22 peak = a;
28 if(a > peak)
29 peak = a;
33 return peak;
  /external/freetype/src/base/
ftbbox.c 255 FT_Pos peak = 0; local
259 /* This function finds a peak of a cubic segment if it is above 0 */
266 /* for the peak to exist and avoids undefined FT_MSB. */
292 /* for a peak to exist above 0, the cubic segment must have */
323 peak = q1;
328 peak = q4;
334 peak >>= shift;
336 peak <<= -shift;
338 return peak;
  /external/pdfium/third_party/freetype/src/base/
ftbbox.c 255 FT_Pos peak = 0; local
259 /* This function finds a peak of a cubic segment if it is above 0 */
266 /* for the peak to exist and avoids undefined FT_MSB. */
292 /* for a peak to exist above 0, the cubic segment must have */
323 peak = q1;
328 peak = q4;
334 peak >>= shift;
336 peak <<= -shift;
338 return peak;
  /hardware/bsp/intel/peripheral/libupm/src/pulsensor/
pulsensor.h 106 int peak; /**< Peak */ member in class:Pulsensor
  /libcore/luni/src/test/java/libcore/javax/net/
ServerSocketFactoryTest.java 94 int peak = 0; local
101 peak++;
107 System.out.println("backlog peaked at " + peak);
121 assertTrue(peak >= specifiedBacklog && peak <= (specifiedBacklog + 3) * 1.5);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
hdspm.h 26 /* -------------------- IOCTL Peak/RMS Meters -------------------- */
60 struct hdspm_peak_rms *peak; member in struct:hdspm_peak_rms_ioctl
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
pitch_estimator.c 143 int ind1, ind2, peaks_ind, peak, max_ind; local
163 peak = 0;
282 /* threshold value to qualify as a peak */
295 /* found a peak; store index into matrix */
311 /* found a peak; store index into matrix */
321 /* examine each peak */
324 peak = peaks[k];
326 /* compute four interpolated values around current peak */
327 IntrepolFilter(&CorrSurfPtr1[peak - (PITCH_LAG_SPAN2+5)], &intrp_a);
328 IntrepolFilter(&CorrSurfPtr1[peak - 1 ], &intrp_b)
    [all...]
  /external/aac/libAACenc/src/
metadata_compressor.cpp 184 FIXP_DBL prevPeak[2]; /*!< max peak of previous block (stereo/mono)*/
660 FIXP_DBL peak[2]; local
    [all...]
  /external/skia/dm/
DM.cpp 120 peak = sk_tools::getMaxResidentSetSizeMB(); local
124 SkDebugf("\n%s elapsed, %d active, %d queued, %dMB RAM, %dMB peak\n",
125 elapsed.c_str(), gRunning.count(), gPending - gRunning.count(), curr, peak);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encoder.c 1960 const double peak = (double)((1 << cpi->oxcf.input_bit_depth) - 1); local
2285 const double peak = (double)((1 << in_bit_depth) - 1); local
2325 static const double peak = 255.0; local
4555 const double peak = (double)((1 << cpi->oxcf.input_bit_depth) - 1); local
    [all...]

Completed in 789 milliseconds