/external/chromium_org/third_party/opus/src/silk/fixed/ |
corrMatrix_FIX.c | 50 opus_int32 inner_prod; local 58 inner_prod = 0; 60 inner_prod += silk_RSHIFT32( silk_SMULBB( ptr1[ i ], ptr2[i] ), rshifts ); 62 Xt[ lag ] = inner_prod; /* X[:,lag]'*t */
|
/external/speex/libspeex/ |
ltp_bfin.h | 37 spx_word32_t inner_prod(const spx_word16_t *x, const spx_word16_t *y, int len) function 91 "LOOP inner_prod%= LC1 = P3 >> 1;\n\t" 92 "LOOP_BEGIN inner_prod%=;\n\t" 95 "LOOP_END inner_prod%=;\n\t" 178 energy[0]=inner_prod(sw-start, sw-start, len); 179 e0=inner_prod(sw, sw, len);
|
ltp.h | 51 spx_word32_t inner_prod(const spx_word16_t *x, const spx_word16_t *y, int len);
|
ltp_arm4.h | 36 spx_word32_t inner_prod(const spx_word16_t *x, const spx_word16_t *y, int len) function 94 //corr[nb_pitch-1-i]=inner_prod(x, _y+i, len);
|
ltp_sse.h | 38 float inner_prod(const float *a, const float *b, int len) function
|
ltp.c | 59 spx_word32_t inner_prod(const spx_word16_t *x, const spx_word16_t *y, int len) function 85 /*corr[nb_pitch-1-i]=inner_prod(x, _y+i, len);*/ 148 corr[nb_pitch-1-i]=inner_prod(_x, _y+i, len); 230 energy[0]=inner_prod(sw-start, sw-start, len); 231 e0=inner_prod(sw, sw, len); 440 corr[i]=inner_prod(x[i],new_target,nsf); 443 A[i][j]=A[j][i]=inner_prod(x[i],x[j],nsf); 522 err = inner_prod(new_target, new_target, nsf);
|
filters.c | 603 corr[0][i] = inner_prod(exc, exc-pitch-3+i, len); 735 iexc0_mag = spx_sqrt(1000+inner_prod(iexc,iexc,nsf)); 736 iexc1_mag = spx_sqrt(1000+inner_prod(iexc+nsf,iexc+nsf,nsf)); 737 exc_mag = spx_sqrt(1+inner_prod(exc,exc,nsf)); 738 corr0 = inner_prod(iexc,exc,nsf); 741 corr1 = inner_prod(iexc+nsf,exc,nsf);
|