Home | History | Annotate | Download | only in tests

Lines Matching defs:out

24    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
71 void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse)
99 difr = ansr - out[bin].r;
100 difi = ansi - out[bin].i;
117 kiss_fft_cpx * out= (kiss_fft_cpx*)malloc(buflen);
142 opus_ifft(cfg,in,out, arch);
144 opus_fft(cfg,in,out, arch);
146 /*for (k=0;k<nfft;++k) printf("%d %d ", out[k].r, out[k].i);printf("\n");*/
148 check(in,out,nfft,isinverse);
151 free(out);