Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/hid/
Duhid.c76 __u8 newhead; in uhid_queue() local
78 newhead = (uhid->head + 1) % UHID_BUFSIZE; in uhid_queue()
80 if (newhead != uhid->tail) { in uhid_queue()
82 uhid->head = newhead; in uhid_queue()
Dhid-wiimote-core.c77 __u8 newhead; in wiimote_queue() local
100 newhead = (wdata->queue.head + 1) % WIIMOTE_BUFSIZE; in wiimote_queue()
103 wdata->queue.head = newhead; in wiimote_queue()
105 } else if (newhead != wdata->queue.tail) { in wiimote_queue()
106 wdata->queue.head = newhead; in wiimote_queue()
/Linux-v4.19/fs/fuse/
Ddev.c1112 struct fuse_forget_link **newhead = &head; in dequeue_forget() local
1115 for (count = 0; *newhead != NULL && count < max; count++) in dequeue_forget()
1116 newhead = &(*newhead)->next; in dequeue_forget()
1118 fiq->forget_list_head.next = *newhead; in dequeue_forget()
1119 *newhead = NULL; in dequeue_forget()