Searched refs:S_MUL (Results 1 – 3 of 3) sorted by relevance
/chre-3.4.0/external/kiss_fft/ |
D | kissfft.hh | 119 scalar_type S_MUL( const scalar_type & a,const scalar_type & b) { return a*b;} in S_MUL() function in kissfft 225 S_MUL(scratch[7].real(),ya.real() ) + S_MUL(scratch[8].real() ,yb.real() ), in kf_bfly5() 226 S_MUL(scratch[7].imag(),ya.real()) + S_MUL(scratch[8].imag(),yb.real()) in kf_bfly5() 230 S_MUL(scratch[10].imag(),ya.imag()) + S_MUL(scratch[9].imag(),yb.imag()), in kf_bfly5() 231 -S_MUL(scratch[10].real(),ya.imag()) - S_MUL(scratch[9].real(),yb.imag()) in kf_bfly5() 239 S_MUL(scratch[7].real(),yb.real()) + S_MUL(scratch[8].real(),ya.real()), in kf_bfly5() 240 S_MUL(scratch[7].imag(),yb.real()) + S_MUL(scratch[8].imag(),ya.real()) in kf_bfly5() 244 -S_MUL(scratch[10].imag(),yb.imag()) + S_MUL(scratch[9].imag(),ya.imag()), in kf_bfly5() 245 S_MUL(scratch[10].real(),yb.imag()) - S_MUL(scratch[9].real(),ya.imag()) in kf_bfly5()
|
D | kiss_fft.c | 184 scratch[5].r = scratch[0].r + S_MUL(scratch[7].r,ya.r) + S_MUL(scratch[8].r,yb.r); in kf_bfly5() 185 scratch[5].i = scratch[0].i + S_MUL(scratch[7].i,ya.r) + S_MUL(scratch[8].i,yb.r); in kf_bfly5() 187 scratch[6].r = S_MUL(scratch[10].i,ya.i) + S_MUL(scratch[9].i,yb.i); in kf_bfly5() 188 scratch[6].i = -S_MUL(scratch[10].r,ya.i) - S_MUL(scratch[9].r,yb.i); in kf_bfly5() 193 scratch[11].r = scratch[0].r + S_MUL(scratch[7].r,yb.r) + S_MUL(scratch[8].r,ya.r); in kf_bfly5() 194 scratch[11].i = scratch[0].i + S_MUL(scratch[7].i,yb.r) + S_MUL(scratch[8].i,ya.r); in kf_bfly5() 195 scratch[12].r = - S_MUL(scratch[10].i,yb.i) + S_MUL(scratch[9].i,ya.i); in kf_bfly5() 196 scratch[12].i = S_MUL(scratch[10].r,yb.i) - S_MUL(scratch[9].r,ya.i); in kf_bfly5()
|
D | _kiss_fft_guts.h | 71 # define S_MUL(a,b) sround( smul(a,b) ) macro 90 # define S_MUL(a,b) ( (a)*(b) ) macro
|