Home
last modified time | relevance | path

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

/linux/drivers/tty/vt/
H A Dkeyboard.c325 static void put_queue(struct vc_data *vc, int ch) in put_queue() function
347 * Many other routines do put_queue, but I think either
356 put_queue(vc, c); in to_utf8()
359 put_queue(vc, 0xc0 | (c >> 6)); in to_utf8()
360 put_queue(vc, 0x80 | (c & 0x3f)); in to_utf8()
367 put_queue(vc, 0xe0 | (c >> 12)); in to_utf8()
368 put_queue(vc, 0x80 | ((c >> 6) & 0x3f)); in to_utf8()
369 put_queue(vc, 0x80 | (c & 0x3f)); in to_utf8()
372 put_queue(vc, 0xf0 | (c >> 18)); in to_utf8()
373 put_queue(v in to_utf8()
[all...]
/linux/include/linux/
H A Duacce.h28 * @put_queue: free a queue to the device
30 * @stop_queue: make the queue stop work before put_queue
42 void (*put_queue)(struct uacce_queue *q); member
/linux/drivers/crypto/hisilicon/
H A Dqm.c2723 .put_queue = hisi_qm_uacce_put_queue,