Lines Matching defs:first
408 /* not the first element */
486 cJSON *first = list;
530 first = sort_list(first, case_sensitive);
535 while ((first != NULL) && (second != NULL))
538 if (compare_strings((unsigned char*)first->string, (unsigned char*)second->string, case_sensitive) < 0)
540 smaller = first;
561 if (first == smaller)
563 first = first->next;
571 if (first != NULL)
573 /* Append rest of first list. */
576 return first;
578 result_tail->next = first;
579 first->prev = result_tail;