Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/original-bsd/old/cpp/
H A Dcpy.y25 e: e '*' e
27 | e '/' e
29 | e '%' e
31 | e '+' e
33 | e '-' e
35 | e LS e
37 | e RS e
43 | e LE e
45 | e GE e
47 | e EQ e
[all …]
/original-bsd/usr.sbin/sendmail/src/
H A Denvelope.c36 if (e == parent && e->e_parent != NULL)
52 return (e);
127 &e->e_errorqueue, 0, e);
236 e->e_receiptto = e->e_from.q_paddr;
254 savemail(e, !bitset(EF_NO_BODY_RETN, e->e_flags));
349 e->e_xfp = e->e_dfp = NULL;
384 initsys(e) in initsys() argument
459 settime(e) in settime() argument
557 (void) xfclose(e->e_xfp, "closexscript", e->e_id);
730 define('z', e->e_from.q_home, e);
[all …]
H A Dqueue.c83 newid = (e->e_id == NULL) || !bitset(EF_INQUEUE, e->e_flags);
188 (*e->e_putbody)(&mcibuf, e, NULL);
218 major(e->e_dfdev), minor(e->e_dfdev), e->e_dfino);
402 (void) xfclose(e->e_lockfp, "queueup lockfp", e->e_id);
1251 readqf(e) in readqf() argument
1349 initsys(e);
1350 define('i', e->e_id, e);
1429 (void) recipient(q, &e->e_sendqueue, 0, e);
1862 define('i', e->e_id, e);
1905 xfclose(e->e_lockfp, "unlockqueue", e->e_id);
[all …]
H A Ddeliver.c43 ENVELOPE *e; in sendall()
76 shouldqueue(e->e_msgpriority, e->e_ctime))
107 e->e_hopcount, MaxHopCount, e->e_from.q_paddr,
132 (void) recipient(&e->e_from, &e->e_sendqueue, 0, e);
1487 (*e->e_puthdr)(mci, e->e_header, e);
1488 (*e->e_putbody)(mci, e, NULL);
1618 e->e_to == NULL ? "NO-TO-LIST" : e->e_to,
2263 df, e->e_to, e->e_from.q_paddr);
2609 df, e->e_to, e->e_from.q_paddr);
2701 (*e->e_puthdr)(&mcibuf, e->e_header, e);
[all …]
H A Dheaders.c146 fvalue, e->e_from.q_paddr, e->e_from.q_user);
395 define('f', e->e_sender, e);
396 define('g', e->e_sender, e);
397 if (e->e_origrcpt != NULL && *e->e_origrcpt != '\0')
398 define('u', e->e_origrcpt, e);
456 &e->e_sendqueue, 0, e);
496 e->e_msgpriority = e->e_msgsize
640 e->e_msgsize, e->e_class, e->e_msgpriority, e->e_nrcpts);
661 e->e_id, e->e_from.q_paddr == NULL ? "<NONE>" :
664 e->e_id, e->e_msgsize, e->e_class,
[all …]
H A Dcollect.c65 register ENVELOPE *e;
104 e->e_dfino = -1;
111 e->e_msgsize = 0;
194 e->e_msgsize++;
315 eatfrom(buf, e);
401 tferror(tf, e);
404 tferror(tf, e);
439 e->e_to = NULL;
524 e->e_id, e->e_msgsize, MaxMessageSize);
583 tferror(tf, e) in tferror() argument
[all …]
H A Dsrvrsmtp.c99 smtp(e) in smtp() argument
128 settime(e);
196 e->e_to = NULL;
383 initsys(e);
545 a = recipient(a, &e->e_sendqueue, 0, e);
551 e->e_to = p;
632 e->e_xfp = freopen(queuename(e, 'x'), "w", e->e_xfp);
669 CurEnv = e = newenvelope(e, CurEnv);
685 CurEnv = e = newenvelope(e, CurEnv);
912 ENVELOPE *e;
[all …]
H A Dusersmtp.c59 smtpinit(m, mci, e) in smtpinit() argument
62 ENVELOPE *e;
237 ENVELOPE *e;
264 ENVELOPE *e;
306 ENVELOPE *e;
484 ENVELOPE *e;
646 (*e->e_puthdr)(mci, e->e_header, e);
647 (*e->e_putbody)(mci, e, NULL);
722 ENVELOPE *e;
762 ENVELOPE *e;
[all …]
H A Dsavemail.c72 e->e_errormode, e->e_id == NULL ? "NONE" : e->e_id,
91 if (parseaddr(e->e_sender, &e->e_from,
231 NULLADDR, &e->e_errorqueue, 0, e);
236 NULLADDR, &e->e_errorqueue, 0, e);
259 if (returntosender(e->e_message, e->e_errorqueue,
283 if (returntosender(e->e_message, q, sendbody, e) == 0)
372 (*e->e_puthdr)(&mcibuf, e->e_header, e);
373 (*e->e_putbody)(&mcibuf, e, NULL);
471 define('g', e->e_from.q_paddr, e);
1027 putheader(mci, e->e_parent->e_header, e->e_parent);
[all …]
/original-bsd/usr.bin/m4/
H A Dm4y.y22 e : e '|' e ={ $$ = ($1!=0 || $3!=0) ? 1 : 0; }
25 | e EQ e ={ $$ = $1 == $3; }
26 | e NE e ={ $$ = $1 != $3; }
27 | e GT e ={ $$ = $1 > $3; }
28 | e GE e ={ $$ = $1 >= $3; }
29 | e LT e ={ $$ = $1 < $3; }
30 | e LE e ={ $$ = $1 <= $3; }
31 | e '+' e ={ $$ = ($1+$3); }
32 | e '-' e ={ $$ = ($1-$3); }
33 | e '*' e ={ $$ = ($1*$3); }
[all …]
/original-bsd/contrib/sc/
H A Dgram.y285 | '@' K_IF '(' e ',' e ',' e ')' { $$ = new(IF, $4,new(',',$6,$8)); }
287 | '@' K_PV '(' e ',' e ',' e ')' { $$ = new(PV, $4,new(':',$6,$8)); }
288 | '@' K_FV '(' e ',' e ',' e ')' { $$ = new(FV, $4,new(':',$6,$8)); }
289 | '@' K_PMT '(' e ',' e ',' e ')' { $$ = new(PMT, $4,new(':',$6,$8)); }
298 | '@' K_DTS '(' e ',' e ',' e ')'
300 | '@' K_TTS '(' e ',' e ',' e ')'
321 | '@' K_SUBSTR '(' e ',' e ',' e ')'
334 e: e '+' e { $$ = new ('+', $1, $3); }
335 | e '-' e { $$ = new ('-', $1, $3); }
336 | e '*' e { $$ = new ('*', $1, $3); }
[all …]
H A Dinterp.c628 case '+': return (eval(e->e.o.left) + eval(e->e.o.right));
629 case '-': return (eval(e->e.o.left) - eval(e->e.o.right));
630 case '*': return (eval(e->e.o.left) * eval(e->e.o.right));
637 case '<': return (eval(e->e.o.left) < eval(e->e.o.right));
638 case '=': return (eval(e->e.o.left) == eval(e->e.o.right));
639 case '>': return (eval(e->e.o.left) > eval(e->e.o.right));
640 case '&': return (eval(e->e.o.left) && eval(e->e.o.right));
641 case '|': return (eval(e->e.o.left) || eval(e->e.o.right));
643 case '?': return eval(e->e.o.left) ? eval(e->e.o.right->e.o.left)
740 eval(e->e.o.right->e.o.left),
[all …]
/original-bsd/games/trek/
H A Dschedule.c37 e = &Event[i];
38 if (e->evcode)
48 e->x = x;
49 e->y = y;
52 return (e);
72 e = e1;
79 e->evcode, e->x, e->y, e->systemname, date);
96 e = e1;
101 e->evcode, e->date, e->x, e->y, e->systemname);
105 e->evcode = 0;
[all …]
H A Devents.c68 if (e->evcode == 0 || (e->evcode & E_GHOST))
73 ev = e;
77 e = ev;
96 xdate, e->evcode, e->x, e->y, e->systemname);
176 if (e->x == ix && e->y == iy)
212 q = &Quad[e->x][e->y];
226 killb(e->x, e->y);
273 q = &Quad[e->x][e->y];
283 e = schedule(E_REPRO, Param.eventdly[E_REPRO] * franf(), e->x, e->y, e->systemname);
291 e->x, e->y);
[all …]
H A Ddumpssradio.c20 register struct event *e; in dumpssradio() local
27 e = &Event[j]; in dumpssradio()
29 if ((e->evcode & E_HIDDEN) == 0) in dumpssradio()
31 if (e->evcode & E_GHOST) in dumpssradio()
33 unschedule(e); in dumpssradio()
35 systemname(e), e->x, e->y); in dumpssradio()
39 switch (e->evcode) in dumpssradio()
44 e->x, e->y); in dumpssradio()
51 systemname(e), e->x, e->y); in dumpssradio()
/original-bsd/usr.bin/make/
H A Dhash.c157 for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next)
158 if (e->namehash == h && strcmp(e->name, p) == 0)
203 for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) {
204 if (e->namehash == h && strcmp(e->name, p) == 0) {
218 e = (Hash_Entry *) emalloc(sizeof(*e) + keylen);
221 *hp = e;
229 return (e);
335 e = e->next;
346 return (e);
384 for (e = *hp++; e != NULL; e = next) {
[all …]
/original-bsd/lib/libc/locale/
H A Dansi.c25 char const *e; local
31 return (s - e);
32 return (e - s);
41 char const *e; local
51 return (e - s);
59 char *e; local
70 return (e ? e - s : -1);
79 char const *e; local
91 s = e;
103 char *e; local
[all …]
/original-bsd/lib/libc/db/btree/
H A Dbt_get.c44 EPG *e; local
113 register EPG *e; local
127 return (e);
144 save = *e;
145 h = e->page;
151 save = *e;
171 e->page = h;
174 --e->index;
206 return (e);
209 *e = save;
[all …]
H A Dbt_delete.c99 EPG *e, save; local
137 save = *e;
147 ++e->index;
161 } while (e->index < NEXTINDEX(h) && __bt_cmp(t, key, e) == 0);
180 e->page = h;
181 e->index = 0;
202 *e = save;
204 if (e->index)
205 --e->index;
206 for (h = e->page; e->index; --e->index) {
[all …]
/original-bsd/usr.bin/bc/
H A Dbc.y164 | e '<' e
166 | e '>' e
168 | e NE e
170 | e GE e
172 | e LE e
178 e : e '+' e
180 | e '-' e
184 | e '*' e
186 | e '/' e
188 | e '%' e
[all …]
/original-bsd/include/
H A Dassert.h24 #define assert(e) ((void)0) argument
25 #define _assert(e) ((void)0) argument
27 #define _assert(e) assert(e) argument
29 #define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e)) argument
31 #define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, "e")) argument
/original-bsd/old/dbx/
H A Devents.c149 return e;
160 Event e; local
211 Event e; in translate()
237 e->id);
244 bp = bp_alloc(e, addr, line, e->actions);
248 bp = bp_alloc(e, codeloc(s), 0, e->actions);
254 bp = bp_alloc(e, pop(Address), 0, e->actions);
259 condbp(e);
282 Event e; in condbp()
378 Event e; in printevent()
[all …]
/original-bsd/games/adventure/
H A Dinit.c37 char *decr(a,b,c,d,e) in decr() argument
38 char a,b,c,d,e; in decr()
46 buf[4] = e-'%';
78 keys = vocab(DECR(k,e,y,s,\0), 1); in linkdata()
80 grate = vocab(DECR(g,r,a,t,e), 1); in linkdata()
81 cage = vocab(DECR(c,a,g,e,\0),1); in linkdata()
84 steps=vocab(DECR(s,t,e,p,s),1); in linkdata()
88 snake = vocab(DECR(s,n,a,k,e), 1); in linkdata()
119 emrald= vocab(DECR(e,m,e,r,a), 1); in linkdata()
130 dprssn= vocab(DECR(d,e,p,r,e), 0); in linkdata()
[all …]
/original-bsd/old/eqn/neqn/
H A DMakefile9 OBJS+= e.o
12 CLEANFILES+=e.c e.def y.tab.h
14 e.c:
15 ${YACC} ${YFLAGS} ${.CURDIR}/../common_source/e.y
16 mv y.tab.c e.c
17 mv y.tab.h e.def
19 e.def: e.c
20 .depend: e.def
/original-bsd/usr.bin/pascal/src/
H A Dcset.c53 register struct tnode *e; local
93 if (e == NIL) {
115 e = e->list_node.list;
116 if (e == NIL) {
119 if (e->tag == T_RANG) {
120 e = e->rang.expr1;
185 e = el->list_node.list;
186 if (e == NIL) {
194 if (e->tag == T_RANG) {
350 register struct tnode *e; variable
[all …]

12345678910>>...23