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

  /src/usr.bin/error/
main.c 249 Eptr ep1, ep2; local
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/tests/lib/libc/stdlib/
t_hsearch.c 193 ENTRY e, *ep, *ep2; local
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
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/sys/arch/hppa/hppa/
fpemu.S 36 #define FP_TABLE2(name, ep0, ep1, ep2, ep3) \
45 .import __CONCAT(__CONCAT(ep2,_),name), code ! \
47 .word __CONCAT(__CONCAT(ep0,_),name), __CONCAT(__CONCAT(ep1,_),name), __CONCAT(__CONCAT(ep2,_),name), __CONCAT(__CONCAT(ep3,_),name)
49 #define FP_TABLE3(name,ep0,ep1,ep2,ep3,ep4,ep5,ep6,ep7,ep8,ep9,epa,epb,epc,epd,epe,epf) \
58 .import __CONCAT(__CONCAT(ep2,_),name), code ! \
72 .word __CONCAT(__CONCAT(ep0,_),name), __CONCAT(__CONCAT(ep1,_),name), __CONCAT(__CONCAT(ep2,_),name), __CONCAT(__CONCAT(ep3,_),name), __CONCAT(__CONCAT(ep4,_),name), __CONCAT(__CONCAT(ep5,_),name), __CONCAT(__CONCAT(ep6,_),name), __CONCAT(__CONCAT(ep7,_),name), __CONCAT(__CONCAT(ep8,_),name), __CONCAT(__CONCAT(ep9,_),name), __CONCAT(__CONCAT(epa,_),name), __CONCAT(__CONCAT(epb,_),name), __CONCAT(__CONCAT(epc,_),name), __CONCAT(__CONCAT(epd,_),name), __CONCAT(__CONCAT(epe,_),name), __CONCAT(__CONCAT(epf,_),name)
  /src/external/bsd/tcpdump/dist/
print-isakmp.c 907 const u_char *p, const u_char *ep2,
918 if (ep2 < p + totlen) {
920 return ep2 + 1;
955 ikev1_attr_print(netdissect_options *ndo, const u_char *p, const u_char *ep2)
965 if (ep2 < p + totlen) {
967 return ep2 + 1;
1226 const u_char *ep2; local
1266 ep2 = (const u_char *)p + item_len;
1267 while (cp < ep && cp < ep2) {
1269 cp = ikev1_attrmap_print(ndo, cp, ep2, map, nmap)
1649 const u_char *ep2; local
1919 const u_char *ep2; local
    [all...]
  /src/external/bsd/mdocml/dist/
dba.c 503 const struct macro_entry *ep1, *ep2; local
506 ep2 = *(const struct macro_entry * const *)vp2;
507 return strcmp(ep1->value, ep2->value);
  /src/usr.sbin/mountd/
mountd.c 1018 struct exportlist *ep, *ep2; local
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
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
ntp_io.c 1690 endpt * ep2; local
1898 for (ep2 = newaddrs; ep2 != NULL; ep2 = ep2->elink) {
1899 if ( IS_IPV6(&ep2->sin)
1900 && ep != ep2
1901 && !is_linklocal(&ep2->sin)) {
1909 for (ep2 = newaddrs; ep2 != NULL; ep2 = next_ep)
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
tc-riscv.c 2195 expressionS ep2; local
2196 ep2.X_op = O_symbol;
2197 ep2.X_add_symbol = make_internal_label ();
2198 ep2.X_add_number = 0;
2201 macro_build (&ep2, lo_insn, lo_pattern, destreg, tempreg, lo_reloc);
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-riscv.c 2195 expressionS ep2; local
2196 ep2.X_op = O_symbol;
2197 ep2.X_add_symbol = make_internal_label ();
2198 ep2.X_add_number = 0;
2201 macro_build (&ep2, lo_insn, lo_pattern, destreg, tempreg, lo_reloc);

Completed in 41 milliseconds