Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Decho.c174 double d_in, d_out; in sox_echo_flow() local
183 d_out = d_in * echo->in_gain; in sox_echo_flow()
185 d_out += echo->delay_buf[ in sox_echo_flow()
190 d_out = d_out * echo->out_gain; in sox_echo_flow()
191 out = SOX_24BIT_CLIP_COUNT((sox_sample_t) d_out, effp->clips); in sox_echo_flow()
208 double d_in, d_out; in sox_echo_drain() local
217 d_out = 0; in sox_echo_drain()
219 d_out += echo->delay_buf[ in sox_echo_drain()
224 d_out = d_out * echo->out_gain; in sox_echo_drain()
225 out = SOX_24BIT_CLIP_COUNT((sox_sample_t) d_out, effp->clips); in sox_echo_drain()
H A Dechos.c171 double d_in, d_out; in sox_echos_flow() local
180 d_out = d_in * echos->in_gain; in sox_echos_flow()
182d_out += echos->delay_buf[echos->counter[j] + echos->pointer[j]] * echos->decay[j]; in sox_echos_flow()
185 d_out = d_out * echos->out_gain; in sox_echos_flow()
186 out = SOX_24BIT_CLIP_COUNT((sox_sample_t) d_out, effp->clips); in sox_echos_flow()
211 double d_in, d_out; in sox_echos_drain() local
220 d_out = 0; in sox_echos_drain()
222d_out += echos->delay_buf[echos->counter[j] + echos->pointer[j]] * echos->decay[j]; in sox_echos_drain()
225 d_out = d_out * echos->out_gain; in sox_echos_drain()
226 out = SOX_24BIT_CLIP_COUNT((sox_sample_t) d_out, effp->clips); in sox_echos_drain()
H A Dchorus.c246 float d_in, d_out; in sox_chorus_flow() local
255 d_out = d_in * chorus->in_gain; in sox_chorus_flow()
257 d_out += chorus->chorusbuf[(chorus->maxsamples + in sox_chorus_flow()
261 d_out = d_out * chorus->out_gain; in sox_chorus_flow()
262 out = SOX_24BIT_CLIP_COUNT((sox_sample_t) d_out, effp->clips); in sox_chorus_flow()
285 float d_in, d_out; in sox_chorus_drain() local
291 d_out = 0; in sox_chorus_drain()
294 d_out += chorus->chorusbuf[(chorus->maxsamples + in sox_chorus_drain()
298 d_out = d_out * chorus->out_gain; in sox_chorus_drain()
299 out = SOX_24BIT_CLIP_COUNT((sox_sample_t) d_out, effp->clips); in sox_chorus_drain()
/OK3568_Linux_fs/kernel/drivers/block/drbd/
H A Ddrbd_nl.c4576 struct drbd_genlmsghdr *d_out; in drbd_bcast_event() local
4586 d_out = genlmsg_put(msg, 0, seq, &drbd_genl_family, 0, DRBD_EVENT); in drbd_bcast_event()
4587 if (!d_out) /* cannot happen, but anyways. */ in drbd_bcast_event()
4589 d_out->minor = device_to_minor(device); in drbd_bcast_event()
4590 d_out->ret_code = NO_ERROR; in drbd_bcast_event()
4594 genlmsg_end(msg, d_out); in drbd_bcast_event()