Searched refs:VSHR32 (Results 1 - 17 of 17) sorted by relevance
/external/libopus/celt/ |
H A D | mathops.c | 74 a = VSHR32(a,shift); 75 b = VSHR32(b,shift); 129 x = VSHR32(x, 2*k); 133 rt = VSHR32(rt,7-k); 188 n = VSHR32(x,i-15)-32768; 205 return VSHR32(EXTEND32(r),i-16);
|
H A D | fixed_c5x.h | 57 #undef VSHR32 macro 58 #define VSHR32(a, shift) _lshl(a,-(shift)) macro
|
H A D | fixed_c6x.h | 61 #undef VSHR32 62 #define VSHR32(a, shift) _lshl(a,-(shift))
|
H A D | mathops.h | 179 n = VSHR32(x,i-15)-32768-16384; 212 return VSHR32(EXTEND32(frac), -integer-2);
|
H A D | pitch.c | 76 xcorr16 = EXTRACT16(VSHR32(xcorr[i], xshift)); 427 x2y2 = MULT16_16_Q14(VSHR32(xx, sx), VSHR32(yy, sy)); 440 g = VSHR32(g, (shift>>1)-1);
|
H A D | vq.c | 130 t = VSHR32(Ryy, 2*(k-7)); 363 t = VSHR32(E, 2*(k-7));
|
H A D | arch.h | 196 #define VSHR32(a,shift) (a) macro
|
H A D | fixed_generic.h | 95 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) macro
|
H A D | bands.c | 125 bandE[i+c*m->nbEBands] = EPSILON+VSHR32(EXTEND32(celt_sqrt(sum)),-shift); 147 E = VSHR32(bandE[i+c*m->nbEBands], shift); 150 X[j+c*N] = MULT16_16_Q15(VSHR32(freq[j+c*N],shift-1),g); 373 left = VSHR32(bandE[i],shift); 374 right = VSHR32(bandE[i+m->nbEBands],shift); 430 t = VSHR32(El, (kl-7)<<1); 432 t = VSHR32(Er, (kr-7)<<1);
|
H A D | fixed_debug.h | 227 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) macro
|
/external/speex/libspeex/ |
H A D | pseudofloat.h | 79 x = VSHR32(x, e); 243 return VSHR32(MULT16_32_Q15(a.m, b),-a.e-15); 255 a = VSHR32(a, e1-14); 257 b = VSHR32(b, e2-14); 273 a = VSHR32(a, e); 297 b = VSHR32(b, e0); 301 a = VSHR32(a, e);
|
H A D | stereo.c | 188 largest = VSHR32(largest, shift-4); 189 smallest = VSHR32(smallest, shift); 207 e_tot = VSHR32(e_tot, shift-25); 208 e_left = VSHR32(e_left, shift-10); 209 e_right = VSHR32(e_right, shift-10);
|
H A D | math_approx.h | 147 x = VSHR32(x, (k<<1)); 149 rt = VSHR32(rt,7-k); 261 return VSHR32(EXTEND32(frac), -integer-2);
|
H A D | arch.h | 171 #define VSHR32(a,shift) (a) macro
|
H A D | fixed_generic.h | 51 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) macro
|
H A D | fixed_debug.h | 165 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) macro
|
/external/libopus/celt/mips/ |
H A D | vq_mipsr1.h | 113 t = VSHR32(E, 2*(k-7));
|
Completed in 268 milliseconds