/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/ |
H A D | isacfix_unittest.cc | 28 int32_t corr[kIntOrder + 1] = {11443647, -27495, 0, local 35 kInt32QDomain, kIntShift, a, corr, &q_shift_residual); 43 corr[i] = i; 46 kInt32QDomain, kIntShift, a, corr, &q_shift_residual); 55 kInt32QDomain, kIntShift, a, corr, &q_shift_residual);
|
/external/speex/libspeex/ |
H A D | ltp_sse.h | 57 void pitch_xcorr(const float *_x, const float *_y, float *corr, int len, int nb_pitch, char *stack) argument 89 _mm_store_ss(corr+nb_pitch-1-(i<<2)-offset, sum);
|
H A D | ltp_arm4.h | 88 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) argument 94 //corr[nb_pitch-1-i]=inner_prod(x, _y+i, len); 181 corr[nb_pitch-1-i]=sum1; 182 corr[nb_pitch-2-i]=sum2; 183 corr[nb_pitch-3-i]=sum3; 184 corr[nb_pitch-4-i]=sum4;
|
H A D | ltp_bfin.h | 66 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) argument 68 corr += nb_pitch - 1; 106 : : "m" (_x), "m" (_y), "m" (corr), "m" (len), "m" (nb_pitch) 163 VARDECL(spx_word32_t *corr); 168 ALLOC(corr, end-start+1, spx_word32_t); 210 pitch_xcorr(sw, sw-end, corr, len, end-start+1, stack); 219 normalize16(corr, corr16, 180, end-start+1); 295 g = DIV32(corr[i-start], 10+SHR32(MULT16_16(spx_sqrt(e0),spx_sqrt(energy[i-start])),6)); 296 /* FIXME: g = max(g,corr/energy) */
|
H A D | filters.c | 598 spx_word32_t corr[4][7]; local 603 corr[0][i] = inner_prod(exc, exc-pitch-3+i, len); 618 tmp += MULT16_32_Q15(shift_filt[i][k],corr[0][j+k-3]); 619 corr[i+1][j] = tmp; 623 maxcorr = corr[0][0]; 628 if (corr[i][j] > maxcorr) 630 maxcorr = corr[i][j];
|
H A D | ltp.c | 79 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) 85 /*corr[nb_pitch-1-i]=inner_prod(x, _y+i, len);*/ 134 corr[nb_pitch-1-i]=sum1; 135 corr[nb_pitch-2-i]=sum2; 136 corr[nb_pitch-3-i]=sum3; 137 corr[nb_pitch-4-i]=sum4; 142 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) argument 148 corr[nb_pitch-1-i]=inner_prod(_x, _y+i, len); 179 VARDECL(spx_word32_t *corr); 190 ALLOC(corr, en 374 spx_word32_t corr[3]; local [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
H A D | filter_functions.c | 130 double corr[PITCH_WLPCORDER+1], rc[PITCH_WLPCORDER+1]; local 166 WebRtcIsac_AutoCorr(corr, ext, PITCH_WLPCWINLEN, PITCH_WLPCORDER); 167 corr[0]=1.01*corr[0]+1.0; /* White noise correction */ 168 WebRtcIsac_LevDurb(apol, rc, corr, PITCH_WLPCORDER);
|
H A D | pitch_estimator.c | 145 double corr, corr_max; local 208 corr = corrvec1[ind1++] + corrvec2[ind2++]; 209 CorrSurfPtr1[k] = corr; 210 if (corr > corr_max) { 211 corr_max = corr; /* update maximum */ 223 corr = adj * (corrvec1[ind1] + corrvec2[ind2]); 224 CorrSurfPtr1[k] = corr; 225 if (corr > corr_max) { 226 corr_max = corr; /* update maximum */ 229 corr [all...] |
H A D | encode.c | 660 double corr[SUBFRAMES << 1][UB_LPC_ORDER + 1]; local 710 &lpcVecs[UB_LPC_ORDER], corr, varscale, isac16kHz); 724 (SUBFRAMES << 1), lpcGains, corr, varscale); 852 double corr[UB_LPC_GAIN_DIM][UB_LPC_ORDER + 1]; local 903 lpcVecs, corr, varscale, isac12kHz); 910 WebRtcIsac_GetLpcGain(s2nr, percepFilterParams, SUBFRAMES, lpcGains, corr,
|
/external/opencv/cv/src/ |
H A D | cvtemplmatch.cpp | 60 CvMat cstub, *corr = (CvMat*)_corr; local 68 CV_CALL( corr = cvGetMat( corr, &cstub )); 80 if( !CV_ARE_DEPTHS_EQ( img, corr ) && CV_MAT_DEPTH( corr->type ) != CV_32F && 81 CV_MAT_DEPTH( corr->type ) != CV_64F ) 85 if( (!CV_ARE_CNS_EQ( img, corr ) || CV_MAT_CN(templ->type) > 1) && 86 (CV_MAT_CN( corr->type ) > 1 || !CV_ARE_CNS_EQ( img, templ)) ) 95 corr_depth = CV_MAT_DEPTH(corr->type); 96 corr_cn = CV_MAT_CN(corr [all...] |
/external/opencv/cvaux/src/ |
H A D | cvmorphcontours.cpp | 534 * Correspondence between points of contours specify by corr 541 CvSeq* corr, 585 for( ; corr; corr = corr->h_next ) 588 cvStartReadSeq( corr, &reader01, 0 ); 590 for(j=0; j < corr->total; j++) 626 CvSeq** corr, 776 *corr = cvCreateSeq(0, 781 corr01 = *corr; 539 icvBlendContours(CvSeq* contour1, CvSeq* contour2, CvSeq* corr, double param, CvMemStorage* storage) argument 624 icvCalcContoursCorrespondence(CvSeq* contour1, CvSeq* contour2, CvSeq** corr, CvMemStorage* storage) argument [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
H A D | decode_plc.c | 274 WebRtc_Word32 nHP, pHP, wNoisyHP, wPriodicHP, corr, minCorr, maxCoeff; local 325 corr = 0; 328 corr = WEBRTC_SPL_ADD_SAT_W32( corr, WEBRTC_SPL_ABS_W32( 334 if( corr < minCorr ) 336 minCorr = corr;
|
H A D | pitch_estimator.c | 279 WebRtc_Word32 corr; local 358 /* Make zeropadded corr vectors */ 461 corr=cv2q[k]; 462 if (corr>corr_max32) { // Disregard small peaks 463 if ((corr>=cv2q[k-1]) && (corr>cv2q[k+1])) { // Peak? 464 peakvq[peaks_indq] = corr;
|
/external/icu4c/tools/tzcode/ |
H A D | localtime.c | 1443 register long corr; local 1447 corr = 0; 1471 corr = lp->ls_corr; 1510 rem += offset - corr;
|
H A D | zic.c | 416 static long corr[TZ_MAX_LEAPS]; variable 1665 if (ats[i] > trans[j] - corr[j]) { 1666 ats[i] = tadd(ats[i], corr[j]); 1857 puttzcode(corr[i], fp); 2582 corr[j] = corr[j - 1]; 2586 corr[i] = positive ? 1L : eitol(-count); 2603 last = corr[i] += last;
|
/external/zxing/core/ |
H A D | core.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ... |