Lines Matching refs:in_buf
51 double *in_buf, in convolve() argument
57 in_buf += --length; in convolve()
58 double sum = *coefs * *in_buf; in convolve()
60 sum += *++coefs * *--in_buf; in convolve()
106 double *in_buf = new double[size]; in update_short() local
107 short2double(in_buf, in, size); in update_short()
108 updateState(in_buf, size); in update_short()
109 delete[] in_buf; in update_short()
173 double *in_buf = new double[size]; in filter_noadjust() local
174 short2double(in_buf, in, size); // convert short input to double in filter_noadjust()
183 *out_ptr++ = double2short(convolve(coef, in_buf, i) + in filter_noadjust()
187 state_ptr = in_buf; in filter_noadjust()
191 updateState(in_buf, size); in filter_noadjust()
192 delete[] in_buf; in filter_noadjust()