/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_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;
|
peakval_port.c | 7 int peak = 0; local 12 if(a > peak) 13 peak = a; 15 return peak;
|
peak_sse2_assist.s | 7 # Find peak absolute value in signed 16-bit input samples 21 pxor %xmm7,%xmm7 # clear peak 30 pmaxsw %xmm0,%xmm7 # store peak
|
peak_sse_assist.s | 7 # Find peak absolute value in signed 16-bit input samples 21 pxor %mm7,%mm7 # clear peak 30 pmaxsw %mm0,%mm7 # store peak
|
peakval_sse2_assist.s | 7 # Find peak absolute value in signed 16-bit input samples 21 pxor %xmm7,%xmm7 # clear peak 30 pmaxsw %xmm0,%xmm7 # store peak
|
peakval_sse_assist.s | 7 # Find peak absolute value in signed 16-bit input samples 21 pxor %mm7,%mm7 # clear peak 30 pmaxsw %mm0,%mm7 # store peak
|
peak_mmx_assist.s | 7 # Find peak value in signed 16-bit input samples 22 pxor %mm7,%mm7 # clear peak 31 movq %mm7,%mm6 # copy previous peak 32 pcmpgtw %mm0,%mm6 # ff == old peak greater
|
peakval_mmx_assist.s | 7 # Find peak value in signed 16-bit input samples 22 pxor %mm7,%mm7 # clear peak 31 movq %mm7,%mm6 # copy previous peak 32 pcmpgtw %mm0,%mm6 # ff == old peak greater
|
/external/libvpx/libvpx/vpx/src/ |
vpx_psnr.c | 17 double vpx_sse_to_psnr(double samples, double peak, double sse) { 19 const double psnr = 10.0 * log10(samples * peak * peak / sse);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
vpx_psnr.c | 17 double vpx_sse_to_psnr(double samples, double peak, double sse) { 19 const double psnr = 10.0 * log10(samples * peak * peak / sse);
|
/external/libvpx/libvpx/vpx/internal/ |
vpx_psnr.h | 22 * Converts sum of squared errros (SSE) to peak signal-to-noise ratio (PNSR). 25 * \param[in] peak Max sample value 28 double vpx_sse_to_psnr(double samples, double peak, double sse);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/ |
vpx_psnr.h | 22 * Converts sum of squared errros (SSE) to peak signal-to-noise ratio (PNSR). 25 * \param[in] peak Max sample value 28 double vpx_sse_to_psnr(double samples, double peak, double sse);
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
Pool.java | 26 public int peak;
field in class:Pool 60 peak = Math.max(peak, freeObjects.size);
83 peak = Math.max(peak, freeObjects.size);
|
/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...] |
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
eboled.js | 91 for(var peak=0; peak < 64; peak++) 94 oled.drawLine(peak, thisPeak, peak, 47, 1);
|
/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);
|
/hardware/bsp/intel/peripheral/libupm/src/pulsensor/ |
pulsensor.cxx | 43 peak = 512; 60 peak = 512; 105 data_from_sensor > pulsensor->peak) { 106 pulsensor->peak = data_from_sensor; 163 pulsensor->apmlitude = pulsensor->peak - pulsensor->trough; 165 pulsensor->peak = pulsensor->threshold; 171 pulsensor->peak = 512;
|
pulsensor.h | 106 int peak; /**< Peak */ member in class:Pulsensor
|
/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/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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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;
|
/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...] |