Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/drivers/tty/vt/
Dkeyboard.c311 static void put_queue(struct vc_data *vc, int ch) in put_queue() function
345 put_queue(vc, c); in to_utf8()
348 put_queue(vc, 0xc0 | (c >> 6)); in to_utf8()
349 put_queue(vc, 0x80 | (c & 0x3f)); in to_utf8()
356 put_queue(vc, 0xe0 | (c >> 12)); in to_utf8()
357 put_queue(vc, 0x80 | ((c >> 6) & 0x3f)); in to_utf8()
358 put_queue(vc, 0x80 | (c & 0x3f)); in to_utf8()
361 put_queue(vc, 0xf0 | (c >> 18)); in to_utf8()
362 put_queue(vc, 0x80 | ((c >> 12) & 0x3f)); in to_utf8()
363 put_queue(vc, 0x80 | ((c >> 6) & 0x3f)); in to_utf8()
[all …]
/kernel/linux/linux-5.10/include/linux/
Duacce.h38 void (*put_queue)(struct uacce_queue *q); member
/kernel/linux/linux-5.10/drivers/misc/uacce/
Duacce.c53 uacce->ops->put_queue) in uacce_put_queue()
54 uacce->ops->put_queue(q); in uacce_put_queue()
/kernel/linux/linux-5.10/drivers/crypto/hisilicon/
Dqm.c2157 .put_queue = hisi_qm_uacce_put_queue,