Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/netbsd-tests/lib/libc/stdlib/
Dt_hsearch.c197 ENTRY e, *ep, *ep2; in ATF_TC_BODY() local
223 ep2 = hsearch(e, FIND); in ATF_TC_BODY()
229 ATF_REQUIRE(ep2 != NULL); in ATF_TC_BODY()
230 ATF_REQUIRE_STREQ(ep2->key, "b"); in ATF_TC_BODY()
231 ATF_REQUIRE_EQ((intptr_t)ep2->data, 1); in ATF_TC_BODY()
361 ENTRY e, *ep, *ep2; in ATF_TC_BODY() local
386 ATF_REQUIRE(hsearch_r(e, FIND, &ep2, &t) == 1); in ATF_TC_BODY()
392 ATF_REQUIRE(ep2 != NULL); in ATF_TC_BODY()
393 ATF_REQUIRE_STREQ(ep2->key, "b"); in ATF_TC_BODY()
394 ATF_REQUIRE_EQ((intptr_t)ep2->data, 1); in ATF_TC_BODY()
/freebsd-12-stable/sys/fs/cd9660/
Dcd9660_lookup.c117 struct iso_directory_record *ep2;/* copy of current directory entry */ local
142 ep2 = ep = NULL;
379 ep2 = malloc(reclen, M_TEMP, M_WAITOK);
380 memcpy(ep2, ep, reclen);
381 ep = ep2;
395 free(ep2, M_TEMP);
417 free(ep2, M_TEMP);
/freebsd-12-stable/contrib/apr/include/
Dapr_ring.h400 #define APR_RING_FOREACH_SAFE(ep1, ep2, head, elem, link) \ argument
401 for (ep1 = APR_RING_FIRST(head), ep2 = APR_RING_NEXT(ep1, link); \
403 ep1 = ep2, ep2 = APR_RING_NEXT(ep1, link))
/freebsd-12-stable/contrib/tcpdump/
Dprint-isakmp.c915 const u_char *p, const u_char *ep2, in ikev1_attrmap_print() argument
928 if (ep2 < p + totlen) { in ikev1_attrmap_print()
930 return ep2 + 1; in ikev1_attrmap_print()
967 ikev1_attr_print(netdissect_options *ndo, const u_char *p, const u_char *ep2) in ikev1_attr_print() argument
979 if (ep2 < p + totlen) { in ikev1_attr_print()
981 return ep2 + 1; in ikev1_attr_print()
1244 const u_char *ep2; in ikev1_t_print() local
1285 ep2 = (const u_char *)p + item_len; in ikev1_t_print()
1286 while (cp < ep && cp < ep2) { in ikev1_t_print()
1288 cp = ikev1_attrmap_print(ndo, cp, ep2, map, nmap); in ikev1_t_print()
[all …]
/freebsd-12-stable/contrib/mandoc/
Ddba.c503 const struct macro_entry *ep1, *ep2; in compare_entries() local
506 ep2 = *(const struct macro_entry * const *)vp2; in compare_entries()
507 return strcmp(ep1->value, ep2->value); in compare_entries()
/freebsd-12-stable/usr.sbin/mountd/
Dmountd.c2063 struct exportlist *ep, *ep2; in free_exports() local
2067 SLIST_FOREACH_SAFE(ep, &exhp[i], entries, ep2) { in free_exports()