Home
last modified time | relevance | path

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

/openbmc/linux/drivers/accessibility/speakup/
H A Dspk_ttyio.c114 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch);
124 .synth_out = spk_ttyio_out,
224 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch) in spk_ttyio_out() function
258 ret = spk_ttyio_out(in_synth, ch); in spk_ttyio_out_unicode()
260 ret = spk_ttyio_out(in_synth, 0xc0 | (ch >> 6)); in spk_ttyio_out_unicode()
261 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode()
263 ret = spk_ttyio_out(in_synth, 0xe0 | (ch >> 12)); in spk_ttyio_out_unicode()
264 ret &= spk_ttyio_out(in_synth, 0x80 | ((ch >> 6) & 0x3f)); in spk_ttyio_out_unicode()
265 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode()