Lines Matching full:pending

119  * 2:1 balanced merges.  Given two pending sublists of size 2^k, they are
129 * pending lists. This is beautifully simple code, but rather subtle.
137 * 2^k, which is when we have 2^k elements pending in smaller lists,
142 * a third list of size 2^(k+1), so there are never more than two pending.
144 * The number of pending lists of size 2^k is determined by the
153 * 0: 00x: 0 pending of size 2^k; x pending of sizes < 2^k
154 * 1: 01x: 0 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
155 * 2: x10x: 0 pending of size 2^k; 2^k + x pending of sizes < 2^k
156 * 3: x11x: 1 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
157 * 4: y00x: 1 pending of size 2^k; 2^k + x pending of sizes < 2^k
158 * 5: y01x: 2 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
167 * When we reach the end of the input, we merge all the pending
176 struct list_head *list = head->next, *pending = NULL; in list_sort() local
177 size_t count = 0; /* Count of pending */ in list_sort()
189 * - pending is a prev-linked "list of lists" of sorted in list_sort()
194 * - A pair of pending sublists are merged as soon as the number in list_sort()
195 * of following pending elements equals their size (i.e. in list_sort()
205 struct list_head **tail = &pending; in list_sort()
220 /* Move one element from input list to pending */ in list_sort()
221 list->prev = pending; in list_sort()
222 pending = list; in list_sort()
224 pending->next = NULL; in list_sort()
228 /* End of input; merge together all the pending lists. */ in list_sort()
229 list = pending; in list_sort()
230 pending = pending->prev; in list_sort()
232 struct list_head *next = pending->prev; in list_sort()
236 list = merge(priv, cmp, pending, list); in list_sort()
237 pending = next; in list_sort()
240 merge_final(priv, cmp, head, pending, list); in list_sort()