Lines Matching refs:l2
307 GSList* l2,
313 while (l1 && l2) {
314 int cmp = ((GCompareDataFunc) compare_func)(l1->data, l2->data, user_data);
320 *tail = l2;
321 tail = &l2->next;
322 l2 = l2->next;
325 *tail = l1 ? l1 : l2;
341 GSList* l2 = list->next;
343 while (l2->next && l2->next->next) {
344 l2 = l2->next->next;
347 l2 = l1->next;
352 g_slist_sort_real(l2, compare_func, user_data),