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

  /external/libopus/celt/
_kiss_fft_guts.h 58 # define S_MUL(a,b) MULT16_32_Q15(b, a)
61 do{ (m).r = SUB32_ovflw(S_MUL((a).r,(b).r) , S_MUL((a).i,(b).i)); \
62 (m).i = ADD32_ovflw(S_MUL((a).r,(b).i) , S_MUL((a).i,(b).r)); }while(0)
65 do{ (m).r = ADD32_ovflw(S_MUL((a).r,(b).r) , S_MUL((a).i,(b).i)); \
66 (m).i = SUB32_ovflw(S_MUL((a).i,(b).r) , S_MUL((a).r,(b).i)); }while(0)
69 do{ (c).r = S_MUL( (c).r , s ) ;
    [all...]
  /external/speex/libspeex/
_kiss_fft_guts.h 65 # define S_MUL(a,b) sround( smul(a,b) )
88 # define S_MUL(a,b) ( (a)*(b) )
  /system/chre/external/kiss_fft/
_kiss_fft_guts.h 67 # define S_MUL(a,b) sround( smul(a,b) )
86 # define S_MUL(a,b) ( (a)*(b) )
kissfft.hh 119 scalar_type S_MUL( const scalar_type & a,const scalar_type & b) { return a*b;}
225 S_MUL(scratch[7].real(),ya.real() ) + S_MUL(scratch[8].real() ,yb.real() ),
226 S_MUL(scratch[7].imag(),ya.real()) + S_MUL(scratch[8].imag(),yb.real())
230 S_MUL(scratch[10].imag(),ya.imag()) + S_MUL(scratch[9].imag(),yb.imag()),
231 -S_MUL(scratch[10].real(),ya.imag()) - S_MUL(scratch[9].real(),yb.imag())
239 S_MUL(scratch[7].real(),yb.real()) + S_MUL(scratch[8].real(),ya.real())
    [all...]

Completed in 244 milliseconds