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
54 void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse)
82 difr = ansr - out[bin].r;
83 difi = ansi - out[bin].i;
100 kiss_fft_cpx * out= (kiss_fft_cpx*)malloc(buflen);
125 opus_ifft(cfg,in,out);
127 opus_fft(cfg,in,out);
129 /*for (k=0;k<nfft;++k) printf("%d %d ", out[k].r, out[k].i);printf("\n");*/
131 check(in,out,nfft,isinverse);
134 free(out);