Lines Matching refs:in_buf
53 double *in_buf, in convolve() argument
59 in_buf += --length; in convolve()
60 double sum = *coefs * *in_buf; in convolve()
62 sum += *++coefs * *--in_buf; in convolve()
108 double *in_buf = new double[size]; in update_short() local
109 short2double(in_buf, in, size); in update_short()
110 updateState(in_buf, size); in update_short()
111 delete in_buf; in update_short()
175 double *in_buf = new double[size]; in filter_noadjust() local
176 short2double(in_buf, in, size); // convert short input to double in filter_noadjust()
185 *out_ptr++ = double2short(convolve(coef, in_buf, i) + in filter_noadjust()
189 state_ptr = in_buf; in filter_noadjust()
193 updateState(in_buf, size); in filter_noadjust()
194 delete in_buf; in filter_noadjust()