Home
last modified time | relevance | path

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

/glibc-2.36/misc/
Dtst-insremque.c31 CHECK (elements[0].q_forw == &elements[2]); in do_test()
33 CHECK (elements[1].q_forw == &elements[3]); in do_test()
35 CHECK (elements[2].q_forw == &elements[1]); in do_test()
37 CHECK (elements[3].q_forw == NULL); in do_test()
42 elements[0].q_forw = &elements[0]; in do_test()
49 CHECK (elements[0].q_forw == &elements[2]); in do_test()
51 CHECK (elements[1].q_forw == &elements[3]); in do_test()
53 CHECK (elements[2].q_forw == &elements[1]); in do_test()
55 CHECK (elements[3].q_forw == &elements[0]); in do_test()
Dinsremque.c28 ((struct qelem *) elem)->q_forw = NULL; in insque()
33 struct qelem *next = ((struct qelem *) prev)->q_forw; in insque()
34 ((struct qelem *) prev)->q_forw = (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()
52 prev->q_forw = (struct qelem *) next; in remque()
Dsearch.h36 struct qelem *q_forw; member