Lines Matching refs:b
22 struct list_head *b), in merge() argument
23 struct list_head *a, struct list_head *b) in merge()
27 while (a && b) { in merge()
29 if ((*cmp)(priv, a, b) <= 0) { in merge()
33 tail->next = b; in merge()
34 b = b->next; in merge()
38 tail->next = a?:b; in merge()
51 struct list_head *b), in merge_and_restore_back_links() argument
53 struct list_head *a, struct list_head *b) in merge_and_restore_back_links()
57 while (a && b) { in merge_and_restore_back_links()
59 if ((*cmp)(priv, a, b) <= 0) { in merge_and_restore_back_links()
64 tail->next = b; in merge_and_restore_back_links()
65 b->prev = tail; in merge_and_restore_back_links()
66 b = b->next; in merge_and_restore_back_links()
70 tail->next = a ? : b; in merge_and_restore_back_links()
105 struct list_head *b)) in list_sort() argument
203 static int __init cmp(void *priv, struct list_head *a, struct list_head *b) in cmp() argument
208 elb = container_of(b, struct debug_el, list); in cmp()