Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/staging/speakup/
Dspk_ttyio.c112 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch);
121 .synth_out = spk_ttyio_out,
199 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch) in spk_ttyio_out() function
231 ret = spk_ttyio_out(in_synth, ch); in spk_ttyio_out_unicode()
233 ret = spk_ttyio_out(in_synth, 0xc0 | (ch >> 6)); in spk_ttyio_out_unicode()
234 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode()
236 ret = spk_ttyio_out(in_synth, 0xe0 | (ch >> 12)); in spk_ttyio_out_unicode()
237 ret &= spk_ttyio_out(in_synth, 0x80 | ((ch >> 6) & 0x3f)); in spk_ttyio_out_unicode()
238 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode()