Lines Matching refs:dllist
7 struct dllist {
8 struct dllist *prev, *next;
13 struct dllist *head = NULL, *l4, *l3, *l2, *l1;
14 struct dllist empty = { NULL, NULL };
16 l4 = t_new(struct dllist, 1);
17 l3 = t_new(struct dllist, 1);
18 l2 = t_new(struct dllist, 1);
19 l1 = t_new(struct dllist, 1);
21 test_begin("dllist");
66 struct dllist *head = NULL, *tail = NULL, *l4, *l3, *l2, *l1;
67 struct dllist empty = { NULL, NULL };
69 l4 = t_new(struct dllist, 1);
70 l3 = t_new(struct dllist, 1);
71 l2 = t_new(struct dllist, 1);
72 l1 = t_new(struct dllist, 1);
74 test_begin("dllist");