Home
last modified time | relevance | path

Searched refs:d_in (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dechos.c171 double d_in, d_out; in sox_echos_flow() local
178 d_in = (double) *ibuf++ / 256; in sox_echos_flow()
180 d_out = d_in * echos->in_gain; in sox_echos_flow()
191 echos->delay_buf[echos->counter[j] + echos->pointer[j]] = d_in; in sox_echos_flow()
194 … echos->delay_buf[echos->counter[j-1] + echos->pointer[j-1]] + d_in; in sox_echos_flow()
211 double d_in, d_out; in sox_echos_drain() local
219 d_in = 0; in sox_echos_drain()
231 echos->delay_buf[echos->counter[j] + echos->pointer[j]] = d_in; in sox_echos_drain()
H A Decho.c174 double d_in, d_out; in sox_echo_flow() local
181 d_in = (double) *ibuf++ / 256; in sox_echo_flow()
183 d_out = d_in * echo->in_gain; in sox_echo_flow()
194 echo->delay_buf[echo->counter] = d_in; in sox_echo_flow()
208 double d_in, d_out; in sox_echo_drain() local
216 d_in = 0; in sox_echo_drain()
228 echo->delay_buf[echo->counter] = d_in; in sox_echo_drain()
H A Dchorus.c246 float d_in, d_out; in sox_chorus_flow() local
253 d_in = (float) *ibuf++ / 256; in sox_chorus_flow()
255 d_out = d_in * chorus->in_gain; in sox_chorus_flow()
265 chorus->chorusbuf[chorus->counter] = d_in; in sox_chorus_flow()
285 float d_in, d_out; in sox_chorus_drain() local
290 d_in = 0; in sox_chorus_drain()
302 chorus->chorusbuf[chorus->counter] = d_in; in sox_chorus_drain()
/OK3568_Linux_fs/kernel/drivers/block/drbd/
H A Ddrbd_nl.c162 struct drbd_genlmsghdr *d_in = info->userhdr; in drbd_adm_prepare() local
187 adm_ctx->reply_dh->minor = d_in->minor; in drbd_adm_prepare()
224 adm_ctx->minor = d_in->minor; in drbd_adm_prepare()
225 adm_ctx->device = minor_to_device(d_in->minor); in drbd_adm_prepare()