HomeSort by: relevance | last modified time | path
    Searched defs:ep2 (Results 1 - 3 of 3) sorted by relevancy

  /src/tests/lib/libc/stdlib/
t_hsearch.c 193 ENTRY e, *ep, *ep2; local in function:ATF_TC_BODY
219 ep2 = hsearch(e, FIND);
225 ATF_REQUIRE(ep2 != NULL);
226 ATF_REQUIRE_STREQ(ep2->key, "b");
227 ATF_REQUIRE_EQ((intptr_t)ep2->data, 1);
347 ENTRY e, *ep, *ep2; local in function:ATF_TC_BODY
372 ATF_REQUIRE(hsearch_r(e, FIND, &ep2, &t) == 1);
378 ATF_REQUIRE(ep2 != NULL);
379 ATF_REQUIRE_STREQ(ep2->key, "b");
380 ATF_REQUIRE_EQ((intptr_t)ep2->data, 1)
    [all...]
  /src/usr.bin/error/
main.c 249 Eptr ep1, ep2; local in function:errorsort
259 ep1 = *epp1; ep2 = *epp2;
260 if (ep1 == 0 || ep2 == 0)
262 if (NOTSORTABLE(ep1->error_e_class) ^ NOTSORTABLE(ep2->error_e_class)) {
266 return ep1->error_no - ep2->error_no;
267 order = strcmp(ep1->error_text[0], ep2->error_text[0]);
269 return ep1->error_line - ep2->error_line;
  /src/usr.sbin/mountd/
mountd.c 1018 struct exportlist *ep, *ep2; local in function:get_exportlist_one
1184 ep2 = exphead;
1190 while (ep2 && strcmp(ep2->ex_fsdir, ep->ex_fsdir) < 0) {
1191 epp = &ep2->ex_next;
1192 ep2 = ep2->ex_next;
1194 if (ep2)
1195 ep->ex_next = ep2;
1230 struct exportlist *ep, *ep2; local in function:get_exportlist
    [all...]

Completed in 13 milliseconds