Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/tty/vt/
Dkeyboard.c302 static void put_queue(struct vc_data *vc, int ch) in put_queue() function
336 put_queue(vc, c); in to_utf8()
339 put_queue(vc, 0xc0 | (c >> 6)); in to_utf8()
340 put_queue(vc, 0x80 | (c & 0x3f)); in to_utf8()
347 put_queue(vc, 0xe0 | (c >> 12)); in to_utf8()
348 put_queue(vc, 0x80 | ((c >> 6) & 0x3f)); in to_utf8()
349 put_queue(vc, 0x80 | (c & 0x3f)); in to_utf8()
352 put_queue(vc, 0xf0 | (c >> 18)); in to_utf8()
353 put_queue(vc, 0x80 | ((c >> 12) & 0x3f)); in to_utf8()
354 put_queue(vc, 0x80 | ((c >> 6) & 0x3f)); in to_utf8()
[all …]