Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dinsque.c35 struct qelem *q_forw; member
46 e->q_forw = e->q_back = NULL; in insque()
48 e->q_forw = p->q_forw; in insque()
50 if (p->q_forw != NULL) in insque()
51 p->q_forw->q_back = e; in insque()
52 p->q_forw = e; in insque()
Dremque.c35 struct qelem *q_forw; member
44 if (e->q_forw != NULL) in remque()
45 e->q_forw->q_back = e->q_back; in remque()
47 e->q_back->q_forw = e->q_forw; in remque()