Lines Matching refs:phase
158 # define KISS_FFT_COS(phase) floor(.5+TWID_MAX*cos (phase)) argument
159 # define KISS_FFT_SIN(phase) floor(.5+TWID_MAX*sin (phase)) argument
162 # define KISS_FFT_COS(phase) _mm_set1_ps( cos(phase) ) argument
163 # define KISS_FFT_SIN(phase) _mm_set1_ps( sin(phase) ) argument
166 # define KISS_FFT_COS(phase) (kiss_fft_scalar) cos(phase) argument
167 # define KISS_FFT_SIN(phase) (kiss_fft_scalar) sin(phase) argument
171 #define kf_cexp(x,phase) \ argument
173 (x)->r = KISS_FFT_COS(phase);\
174 (x)->i = KISS_FFT_SIN(phase);\
177 #define kf_cexp2(x,phase) \ argument
179 (x)->r = TRIG_UPSCALE*celt_cos_norm((phase));\
180 (x)->i = TRIG_UPSCALE*celt_cos_norm((phase)-32768);\