Searched refs:spk_ttyio_out (Results 1 - 2 of 2) sorted by relevance
/kernel/linux/linux-5.10/drivers/accessibility/speakup/ |
H A D | spk_ttyio.c | 115 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch); 125 .synth_out = spk_ttyio_out, 222 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch) in spk_ttyio_out() function 255 ret = spk_ttyio_out(in_synth, ch); in spk_ttyio_out_unicode() 257 ret = spk_ttyio_out(in_synth, 0xc0 | (ch >> 6)); in spk_ttyio_out_unicode() 258 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode() 260 ret = spk_ttyio_out(in_synth, 0xe0 | (ch >> 12)); in spk_ttyio_out_unicode() 261 ret &= spk_ttyio_out(in_synth, 0x80 | ((ch >> 6) & 0x3f)); in spk_ttyio_out_unicode() 262 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f)); in spk_ttyio_out_unicode()
|
/kernel/linux/linux-6.6/drivers/accessibility/speakup/ |
H A D | spk_ttyio.c | 114 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()
|
Completed in 2 milliseconds