Searched refs:ep2 (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_hsearch.c197 ENTRY e, *ep, *ep2; local
223 ep2 = hsearch(e, FIND);
229 ATF_REQUIRE(ep2 != NULL);
230 ATF_REQUIRE_STREQ(ep2->key, "b");
231 ATF_REQUIRE_EQ((intptr_t)ep2->data, 1);
361 ENTRY e, *ep, *ep2; local
386 ATF_REQUIRE(hsearch_r(e, FIND, &ep2, &t) == 1);
392 ATF_REQUIRE(ep2 != NULL);
393 ATF_REQUIRE_STREQ(ep2->key, "b");
394 ATF_REQUIRE_EQ((intptr_t)ep2
[all...]
/freebsd-11-stable/sys/fs/cd9660/
H A Dcd9660_lookup.c115 struct iso_directory_record *ep2;/* copy of current directory entry */ local
140 ep2 = ep = NULL;
377 ep2 = malloc(reclen, M_TEMP, M_WAITOK);
378 bcopy(ep, ep2, reclen);
379 ep = ep2;
393 free(ep2, M_TEMP);
415 free(ep2, M_TEMP);
/freebsd-11-stable/contrib/apr/include/
H A Dapr_ring.h395 * @param ep2 Iteration cursor
400 #define APR_RING_FOREACH_SAFE(ep1, ep2, head, elem, link) \
401 for (ep1 = APR_RING_FIRST(head), ep2 = APR_RING_NEXT(ep1, link); \
403 ep1 = ep2, ep2 = APR_RING_NEXT(ep1, link))
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-isakmp.c915 const u_char *p, const u_char *ep2,
928 if (ep2 < p + totlen) {
930 return ep2 + 1;
967 ikev1_attr_print(netdissect_options *ndo, const u_char *p, const u_char *ep2) argument
979 if (ep2 < p + totlen) {
981 return ep2 + 1;
1244 const u_char *ep2; local
1285 ep2 = (const u_char *)p + item_len;
1286 while (cp < ep && cp < ep2) {
1288 cp = ikev1_attrmap_print(ndo, cp, ep2, ma
914 ikev1_attrmap_print(netdissect_options *ndo, const u_char *p, const u_char *ep2, const struct attrmap *map, size_t nmap) argument
1657 const u_char *ep2; local
1917 const u_char *ep2; local
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Ddba.c503 const struct macro_entry *ep1, *ep2; local
506 ep2 = *(const struct macro_entry * const *)vp2;
507 return strcmp(ep1->value, ep2->value);
/freebsd-11-stable/usr.sbin/mountd/
H A Dmountd.c2004 struct exportlist *ep, *ep2; local
2008 SLIST_FOREACH_SAFE(ep, &exhp[i], entries, ep2) {

Completed in 172 milliseconds