Lines Matching defs:in
4 Redistribution and use in source and binary forms, with or without
11 - Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
18 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
23 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
54 void check(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse)
69 ansr += in[k] * re;
84 void check_inv(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse)
99 ansr += in[k] * re;
120 kiss_fft_scalar * in = (kiss_fft_scalar*)malloc(buflen);
128 in[k] = (rand() % 32768) - 16384;
135 in[k] *= 32768;
141 in[k] /= nfft;
146 in_copy[k] = in[k];
147 /*for (k=0;k<nfft;++k) printf("%d %d ", in[k].r, in[k].i);printf("\n");*/
153 clt_mdct_backward(&cfg,in,out, window, nfft/2, 0, 1);
157 check_inv(in,out,nfft,isinverse);
159 clt_mdct_forward(&cfg,in,out,window, nfft/2, 0, 1);
165 free(in);