Searched refs:list1 (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.0-release/contrib/bmake/lst.lib/
H A DlstConcat.c85 List list1 = l1; local
111 list2->firstPtr->prevPtr = list1->lastPtr;
112 if (list1->lastPtr != NULL) {
113 list1->lastPtr->nextPtr = list2->firstPtr;
115 list1->firstPtr = list2->firstPtr;
117 list1->lastPtr = list2->lastPtr;
119 if (list1->isCirc && list1->firstPtr != NULL) {
125 list1->firstPtr->prevPtr = list1
[all...]
/freebsd-10.0-release/contrib/gperf/src/
H A Dkeyword-list.cc87 merge (Keyword_List *list1, Keyword_List *list2, Keyword_Comparison less) argument
93 if (!list1)
100 *resultp = list1;
103 if (less (list2->first(), list1->first()))
109 list2 = list1; list1 = *resultp;
113 *resultp = list1;
114 resultp = &list1->rest();
115 list1 = *resultp;
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.c173 list_concat(list_t **list1, list_t *list2) argument
177 for (l = *list1, last = NULL; l; last = l, l = l->l_next)
181 *list1 = list2;
192 list_t *list1, *next2; local
200 list1 = *list1p;
202 if (cmp(list1->l_data, list2->l_data) > 0) {
208 list2->l_next = list1;
210 list2->l_next = list1;
218 last1 = list1;
219 list1
[all...]
/freebsd-10.0-release/lib/libc/stdlib/
H A Dmerge.c108 u_char *list2, *list1, *p2, *p, *last, **p1; local
129 list1 = base;
130 setup(list1, list2, nmemb, size, cmp);
134 l2 = list1;
135 p1 = EVAL(list1);
139 f2 = l1 = list1 + (p2 - list2);
142 l2 = list1 + (p2 - list2);
223 tp2 = list1; /* swap list1, list2 */
224 list1
[all...]
/freebsd-10.0-release/usr.bin/make/
H A Dlst.c95 * list1 The list to which list2 is to be appended
96 * list2 The list to append to list1
104 Lst_Concat(Lst *list1, Lst *list2, int flags) argument
123 list2->firstPtr->prevPtr = list1->lastPtr;
124 if (list1->lastPtr != NULL)
125 list1->lastPtr->nextPtr = list2->firstPtr;
127 list1->firstPtr = list2->firstPtr;
128 list1->lastPtr = list2->lastPtr;
135 * into list1 and its datum field from the datum field of the
143 for (last = list1
[all...]
/freebsd-10.0-release/tools/tools/zfsboottest/
H A Dzfsboottest.sh83 list1=`mktemp /tmp/zfsboottest.XXXXXXXXXX`
98 find "${mountpoint}${startdir}" -type f | xargs md5 -r | sed "s@ ${mountpoint}@ @" | egrep '^[0-9a-z]{32} /' | sort -k 2 >"${list1}"
100 diff -u "${list0}" "${list1}"
103 rm -f "${list0}" "${list1}"
/freebsd-10.0-release/contrib/ntp/include/isc/
H A Dlist.h155 #define ISC_LIST_APPENDLIST(list1, list2, link) \
157 if (ISC_LIST_EMPTY(list1)) \
158 (list1) = (list2); \
160 (list1).tail->link.next = (list2).head; \
161 (list2).head->link.prev = (list1).tail; \
162 (list1).tail = (list2).tail; \
H A Dutil.h199 #define APPENDLIST(list1, list2, link) ISC_LIST_APPENDLIST(list1, list2, link)
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dtest_config.c87 char *list1[] = { "/tmp/foo", "/tmp/foo/bar", NULL }; variable
111 test[1].res = list1;
/freebsd-10.0-release/contrib/diff/src/
H A Ddiff3.c904 compare_line_list (char * const list1[], size_t const lengths1[],
908 char * const *l1 = list1;
901 compare_line_list(char * const list1[], size_t const lengths1[], char * const list2[], size_t const lengths2[], lin nl) argument

Completed in 136 milliseconds