Lines Matching refs:smaller
537 cJSON *smaller = NULL;
540 smaller = first;
544 smaller = second;
549 /* start merged list with the smaller element */
550 result_tail = smaller;
551 result = smaller;
555 /* add smaller element to the list */
556 result_tail->next = smaller;
557 smaller->prev = result_tail;
558 result_tail = smaller;
561 if (first == smaller)