Home
last modified time | relevance | path

Searched defs:a (Results 1 – 2 of 2) sorted by relevance

/chre-3.4.0/external/kiss_fft/
D_kiss_fft_guts.h59 # define CHECK_OVERFLOW_OP(a,op,b) \ argument
63 #define CHECK_OVERFLOW(a, op, b) {} argument
68 # define smul(a,b) ( (SAMPPROD)(a)*(b) ) argument
71 # define S_MUL(a,b) sround( smul(a,b) ) argument
73 # define C_MUL(m,a,b) \ argument
90 # define S_MUL(a,b) ( (a)*(b) ) argument
91 #define C_MUL(m,a,b) \ argument
101 # define CHECK_OVERFLOW_OP(a,op,b) /* noop */ argument
104 #define C_ADD( res, a,b)\ argument
110 #define C_SUB( res, a,b)\ argument
[all …]
Dkissfft.hh114 void C_ADD( cpx_type & c,const cpx_type & a,const cpx_type & b) { c=a+b;} in C_ADD()
115 void C_MUL( cpx_type & c,const cpx_type & a,const cpx_type & b) { c=a*b;} in C_MUL()
116 void C_SUB( cpx_type & c,const cpx_type & a,const cpx_type & b) { c=a-b;} in C_SUB()
117 void C_ADDTO( cpx_type & c,const cpx_type & a) { c+=a;} in C_ADDTO()
119 scalar_type S_MUL( const scalar_type & a,const scalar_type & b) { return a*b;} in S_MUL()
120 scalar_type HALF_OF( const scalar_type & a) { return a*.5;} in HALF_OF()
121 void C_MULBYSCALAR(cpx_type & c,const scalar_type & a) {c*=a;} in C_MULBYSCALAR()