Searched refs:next (Results 1 – 1 of 1) sorted by relevance
33 struct qelem *next = ((struct qelem *) prev)->q_forw; in insque() local35 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() local49 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