Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/accessibility/speakup/
Dspk_ttyio.c115 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch);
125 .synth_out = spk_ttyio_out,
225 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch) in spk_ttyio_out() function
259 ret = spk_ttyio_out(in_synth, ch); in spk_ttyio_out_unicode()
261 ret = spk_ttyio_out(in_synth, 0xc0 | (ch >> 6)); in spk_ttyio_out_unicode()
262 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode()
264 ret = spk_ttyio_out(in_synth, 0xe0 | (ch >> 12)); in spk_ttyio_out_unicode()
265 ret &= spk_ttyio_out(in_synth, 0x80 | ((ch >> 6) & 0x3f)); in spk_ttyio_out_unicode()
266 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode()