Home
last modified time | relevance | path

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

/original-bsd/usr.bin/error/
H A Dmain.c239 reg Eptr ep1, ep2; local
248 ep1 = *epp1; ep2 = *epp2;
249 if (ep1 == 0 || ep2 == 0)
251 if ( (NOTSORTABLE(ep1->error_e_class)) ^ (NOTSORTABLE(ep2->error_e_class))){
255 return(ep1->error_no - ep2->error_no);
256 order = strcmp(ep1->error_text[0], ep2->error_text[0]);
258 return(ep1->error_line - ep2->error_line);
/original-bsd/usr.bin/f77/pass1.tahoe/
H A Doptcse.c416 LOCAL samebase(ep1,ep2) in samebase() argument
417 expptr ep1,ep2; in samebase()
419 if ( ep1->tag == ep2->tag )
420 switch (ep2->tag) {
426 if (ep1->addrblock.vstg == ep2->addrblock.vstg) {
432 ISCONST(ep2->addrblock.memoffset) &&
434 ep2->addrblock.memoffset->constblock.constant.ci ) {
448 (ep2->constblock.vtype) )
452 bp= &ep2->constblock.constant;
475 badtag ("samebase",ep2->tag);
[all …]
/original-bsd/usr.bin/f77/pass1.vax/
H A Doptcse.c416 LOCAL samebase(ep1,ep2) in samebase() argument
417 expptr ep1,ep2; in samebase()
419 if ( ep1->tag == ep2->tag )
420 switch (ep2->tag) {
426 if (ep1->addrblock.vstg == ep2->addrblock.vstg) {
432 ISCONST(ep2->addrblock.memoffset) &&
434 ep2->addrblock.memoffset->constblock.constant.ci ) {
448 (ep2->constblock.vtype) )
452 bp= &ep2->constblock.constant;
475 badtag ("samebase",ep2->tag);
[all …]
/original-bsd/sbin/mountd/
H A Dmountd.c616 struct exportlist *ep, *ep2; in get_exportlist() local
631 ep2 = ep; in get_exportlist()
633 free_exp(ep2); in get_exportlist()
871 ep2 = exphead; in get_exportlist()
877 while (ep2 && strcmp(ep2->ex_fsdir, ep->ex_fsdir) < 0) { in get_exportlist()
878 epp = &ep2->ex_next; in get_exportlist()
879 ep2 = ep2->ex_next; in get_exportlist()
881 if (ep2) in get_exportlist()
882 ep->ex_next = ep2; in get_exportlist()