Home | History | Annotate | Download | only in src

Lines Matching refs:start

36 // are stored at the start of each element, independently of the
72 // |start| will point to the first node of the range, |end| will point
75 void FL_PopRange(void **head, int n, void **start, void **end) {
77 *start = NULL;
82 *start = *head; // Remember the first node in the range.
96 // Pushes the nodes in the list begginning at |start| whose last node
99 void FL_PushRange(void **head, void *start, void *end) {
100 if (!start) return;
104 FL_Next(start);
106 ASSERT(FL_Previous_No_Check(start) == NULL);
115 *head = start;