Home
last modified time | relevance | path

Searched refs:synth_out (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dsynth.c461 double synth_out; /* [-1, 1] */ in flow() local
492 synth_out = sin(2 * M_PI * phase); in flow()
504 synth_out = -1 + 2 * (phase < chan->p1); in flow()
516 synth_out = -1 + 2 * phase; in flow()
530 synth_out = -1 + 2 * phase / chan->p1; /* In rising part of period */ in flow()
532 synth_out = 1 - 2 * (phase - chan->p1) / (1 - chan->p1); /* In falling part */ in flow()
545 synth_out = -1 + 2 * phase / chan->p1; in flow()
547 synth_out = 1; in flow()
549 synth_out = 1 - 2 * (phase - chan->p2) / (chan->p3 - chan->p2); in flow()
551 synth_out = -1; in flow()
[all …]
/OK3568_Linux_fs/kernel/drivers/accessibility/speakup/
H A Dspeakup_dectlk.c250 if (synth_full_val || !synth->io_ops->synth_out(synth, ch)) { in do_catch_up()
264 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
267 synth->io_ops->synth_out(synth, in do_catch_up()
283 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
290 synth->io_ops->synth_out(synth, ']'); in synth_flush()
294 synth->io_ops->synth_out(synth, SYNTH_CLEAR); in synth_flush()
H A Dspeakup_decext.c182 if (synth_full() || !synth->io_ops->synth_out(synth, ch)) { in do_catch_up()
196 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
199 synth->io_ops->synth_out(synth, in do_catch_up()
215 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
H A Dspeakup_apollo.c165 if (!synth->io_ops->synth_out(synth, ch)) { in do_catch_up()
177 if (synth->io_ops->synth_out(synth, synth->procspeech)) in do_catch_up()
190 synth->io_ops->synth_out(synth, PROCSPEECH); in do_catch_up()
H A Dsynth.c99 ret = synth->io_ops->synth_out(synth, ch); in _spk_do_catch_up()
110 if (synth->io_ops->synth_out(synth, synth->procspeech)) in _spk_do_catch_up()
123 synth->io_ops->synth_out(synth, synth->procspeech); in _spk_do_catch_up()
141 synth->io_ops->synth_out(synth, synth->clear); in spk_synth_flush()
H A Dspk_ttyio.c125 .synth_out = spk_ttyio_out,
406 !synth->io_ops->synth_out(synth, ch)) in spk_ttyio_synth_immediate()
H A Dspeakup_audptr.c124 synth->io_ops->synth_out(synth, PROCSPEECH); in synth_flush()
H A Dspk_types.h158 int (*synth_out)(struct spk_synth *synth, const char ch); member
H A Dserialio.c38 .synth_out = spk_serial_out,