Searched refs:qelem (Results 1 – 3 of 3) sorted by relevance
31 ((struct qelem *) elem)->q_forw = NULL; in insque()32 ((struct qelem *) elem)->q_back = NULL; in insque()36 struct qelem *next = ((struct qelem *) prev)->q_forw; in insque()37 ((struct qelem *) prev)->q_forw = (struct qelem *) elem; in insque()39 next->q_back = (struct qelem *) elem; in insque()40 ((struct qelem *) elem)->q_forw = next; in insque()41 ((struct qelem *) elem)->q_back = (struct qelem *) prev; in insque()53 struct qelem *next = ((struct qelem *) elem)->q_forw; in remque()54 struct qelem *prev = ((struct qelem *) elem)->q_back; in remque()58 prev->q_forw = (struct qelem *) next; in remque()
34 struct qelem struct36 struct qelem *q_forw; argument37 struct qelem *q_back; argument
68 struct qelem q;
Completed in 4 milliseconds