Lines Matching full:pending
134 * 2:1 balanced merges. Given two pending sublists of size 2^k, they are
144 * pending lists. This is beautifully simple code, but rather subtle.
152 * 2^k, which is when we have 2^k elements pending in smaller lists,
157 * a third list of size 2^(k+1), so there are never more than two pending.
159 * The number of pending lists of size 2^k is determined by the
168 * 0: 00x: 0 pending of size 2^k; x pending of sizes < 2^k
169 * 1: 01x: 0 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
170 * 2: x10x: 0 pending of size 2^k; 2^k + x pending of sizes < 2^k
171 * 3: x11x: 1 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
172 * 4: y00x: 1 pending of size 2^k; 2^k + x pending of sizes < 2^k
173 * 5: y01x: 2 pending of size 2^k; 2^(k-1) + x pending of sizes < 2^k
182 * When we reach the end of the input, we merge all the pending
191 struct list_head *list = head->next, *pending = NULL; in list_sort() local
192 size_t count = 0; /* Count of pending */ in list_sort()
204 * - pending is a prev-linked "list of lists" of sorted in list_sort()
209 * - A pair of pending sublists are merged as soon as the number in list_sort()
210 * of following pending elements equals their size (i.e. in list_sort()
220 struct list_head **tail = &pending; in list_sort()
235 /* Move one element from input list to pending */ in list_sort()
236 list->prev = pending; in list_sort()
237 pending = list; in list_sort()
239 pending->next = NULL; in list_sort()
243 /* End of input; merge together all the pending lists. */ in list_sort()
244 list = pending; in list_sort()
245 pending = pending->prev; in list_sort()
247 struct list_head *next = pending->prev; in list_sort()
251 list = merge(priv, cmp, pending, list); in list_sort()
252 pending = next; in list_sort()
255 merge_final(priv, cmp, head, pending, list); in list_sort()