Lines Matching defs:list
11 * copyright notice, this list of conditions and the *
15 * copyright notice, this list of conditions and the *
42 * notice, this list of conditions and the following disclaimer. *
44 * notice, this list of conditions and the following disclaimer in *
70 /* Flatten a dictionary into a linked list.
83 reg Dtlink_t *r, *t, *list, *last, **slot, **eslot;
89 list = last = NIL(Dtlink_t*);
97 else list = last = t;
107 last = last ? (last->right = r) : (list = r);
112 list = dt->data->head;
114 dt->data->here = list;
117 return list;