Lines Matching refs:Fout

30         kiss_fft_cpx * Fout,  in kf_bfly2()  argument
39 Fout2 = Fout + m; in kf_bfly2()
41 C_FIXDIV(*Fout,2); C_FIXDIV(*Fout2,2); in kf_bfly2()
45 C_SUB( *Fout2 , *Fout , t ); in kf_bfly2()
46 C_ADDTO( *Fout , t ); in kf_bfly2()
48 ++Fout; in kf_bfly2()
53 kiss_fft_cpx * Fout, in kf_bfly4() argument
69 C_FIXDIV(*Fout,4); C_FIXDIV(Fout[m],4); C_FIXDIV(Fout[m2],4); C_FIXDIV(Fout[m3],4); in kf_bfly4()
71 C_MUL(scratch[0],Fout[m] , *tw1 ); in kf_bfly4()
72 C_MUL(scratch[1],Fout[m2] , *tw2 ); in kf_bfly4()
73 C_MUL(scratch[2],Fout[m3] , *tw3 ); in kf_bfly4()
75 C_SUB( scratch[5] , *Fout, scratch[1] ); in kf_bfly4()
76 C_ADDTO(*Fout, scratch[1]); in kf_bfly4()
79 C_SUB( Fout[m2], *Fout, scratch[3] ); in kf_bfly4()
83 C_ADDTO( *Fout , scratch[3] ); in kf_bfly4()
86 Fout[m].r = scratch[5].r - scratch[4].i; in kf_bfly4()
87 Fout[m].i = scratch[5].i + scratch[4].r; in kf_bfly4()
88 Fout[m3].r = scratch[5].r + scratch[4].i; in kf_bfly4()
89 Fout[m3].i = scratch[5].i - scratch[4].r; in kf_bfly4()
91 Fout[m].r = scratch[5].r + scratch[4].i; in kf_bfly4()
92 Fout[m].i = scratch[5].i - scratch[4].r; in kf_bfly4()
93 Fout[m3].r = scratch[5].r - scratch[4].i; in kf_bfly4()
94 Fout[m3].i = scratch[5].i + scratch[4].r; in kf_bfly4()
96 ++Fout; in kf_bfly4()
101 kiss_fft_cpx * Fout, in kf_bfly3() argument
117 C_FIXDIV(*Fout,3); C_FIXDIV(Fout[m],3); C_FIXDIV(Fout[m2],3); in kf_bfly3()
119 C_MUL(scratch[1],Fout[m] , *tw1); in kf_bfly3()
120 C_MUL(scratch[2],Fout[m2] , *tw2); in kf_bfly3()
127 Fout[m].r = Fout->r - HALF_OF(scratch[3].r); in kf_bfly3()
128 Fout[m].i = Fout->i - HALF_OF(scratch[3].i); in kf_bfly3()
132 C_ADDTO(*Fout,scratch[3]); in kf_bfly3()
134 Fout[m2].r = Fout[m].r + scratch[0].i; in kf_bfly3()
135 Fout[m2].i = Fout[m].i - scratch[0].r; in kf_bfly3()
137 Fout[m].r -= scratch[0].i; in kf_bfly3()
138 Fout[m].i += scratch[0].r; in kf_bfly3()
140 ++Fout; in kf_bfly3()
145 kiss_fft_cpx * Fout, in kf_bfly5() argument
160 Fout0=Fout; in kf_bfly5()
207 kiss_fft_cpx * Fout, in kf_bfly_generic() argument
224 scratch[q1] = Fout[ k ]; in kf_bfly_generic()
232 Fout[ k ] = scratch[0]; in kf_bfly_generic()
237 C_ADDTO( Fout[ k ] ,t); in kf_bfly_generic()
247 kiss_fft_cpx * Fout, in kf_work() argument
255 kiss_fft_cpx * Fout_beg=Fout; in kf_work()
258 const kiss_fft_cpx * Fout_end = Fout + p*m; in kf_work()
270 kf_work( Fout +k*m, f+ fstride*in_stride*k,fstride*p,in_stride,factors,st); in kf_work()
274 case 2: kf_bfly2(Fout,fstride,st,m); break; in kf_work()
275 case 3: kf_bfly3(Fout,fstride,st,m); break; in kf_work()
276 case 4: kf_bfly4(Fout,fstride,st,m); break; in kf_work()
277 case 5: kf_bfly5(Fout,fstride,st,m); break; in kf_work()
278 default: kf_bfly_generic(Fout,fstride,st,m,p); break; in kf_work()
286 *Fout = *f; in kf_work()
288 }while(++Fout != Fout_end ); in kf_work()
295 kf_work( Fout , f, fstride*(size_t)p, in_stride, factors,st); in kf_work()
297 }while( (Fout += m) != Fout_end ); in kf_work()
300 Fout=Fout_beg; in kf_work()
304 case 2: kf_bfly2(Fout,fstride,st,m); break; in kf_work()
305 case 3: kf_bfly3(Fout,fstride,st,(size_t)m); break; in kf_work()
306 case 4: kf_bfly4(Fout,fstride,st,(size_t)m); break; in kf_work()
307 case 5: kf_bfly5(Fout,fstride,st,m); break; in kf_work()
308 default: kf_bfly_generic(Fout,fstride,st,m,p); break; in kf_work()