Lines Matching refs:b
24 struct list_head *b), in merge() argument
25 struct list_head *a, struct list_head *b) in merge()
29 while (a && b) { in merge()
31 if ((*cmp)(priv, a, b) <= 0) { in merge()
35 tail->next = b; in merge()
36 b = b->next; in merge()
40 tail->next = a?:b; in merge()
53 struct list_head *b), in merge_and_restore_back_links() argument
55 struct list_head *a, struct list_head *b) in merge_and_restore_back_links()
59 while (a && b) { in merge_and_restore_back_links()
61 if ((*cmp)(priv, a, b) <= 0) { in merge_and_restore_back_links()
66 tail->next = b; in merge_and_restore_back_links()
67 b->prev = tail; in merge_and_restore_back_links()
68 b = b->next; in merge_and_restore_back_links()
72 tail->next = a ? : b; in merge_and_restore_back_links()
107 struct list_head *b)) in list_sort() argument
205 static int __init cmp(void *priv, struct list_head *a, struct list_head *b) in cmp() argument
210 elb = container_of(b, struct debug_el, list); in cmp()