Home
last modified time | relevance | path

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

/misc/
A Dinsremque.c33 struct qelem *next = ((struct qelem *) prev)->q_forw; in insque() local
35 if (next != NULL) in insque()
36 next->q_back = (struct qelem *) elem; in insque()
37 ((struct qelem *) elem)->q_forw = next; in insque()
47 struct qelem *next = ((struct qelem *) elem)->q_forw; in remque() local
49 if (next != NULL) in remque()
50 next->q_back = prev; in remque()
52 prev->q_forw = (struct qelem *) next; in remque()

Completed in 4 milliseconds