Symbol: elist
games/gomoku/gomoku.h
200
struct elist *e_next; /* list of completion points */
games/gomoku/gomoku.h
223
struct elist *s_empty; /* level n combo completion spots */
games/gomoku/gomoku.h
224
struct elist *s_nempty; /* level n+1 combo completion spots */
games/gomoku/main.c
348
struct elist *ep;
games/gomoku/pickmove.c
1328
struct elist *ep, *nep, **epp;
games/gomoku/pickmove.c
220
struct elist *ep, *nep;
games/gomoku/pickmove.c
347
sp->s_empty = (struct elist *)0;
games/gomoku/pickmove.c
361
sp->s_nempty = (struct elist *)0;
games/gomoku/pickmove.c
536
struct elist *ep, *nep;
games/gomoku/pickmove.c
560
sp->s_nempty = (struct elist *)0;
games/gomoku/pickmove.c
636
struct elist *ep;
games/gomoku/pickmove.c
638
struct elist *nep;
games/gomoku/pickmove.c
773
struct elist einfo[MAXDEPTH];
games/gomoku/pickmove.c
784
struct elist *ep, *nep;
games/gomoku/pickmove.c
898
nep = malloc(sizeof(struct elist));
games/gomoku/pickmove.c
899
if (nep == (struct elist *)NULL)
usr.bin/cvs/admin.c
162
(elist != NULL) ? elist : "");
usr.bin/cvs/admin.c
299
if (elist != NULL) {
usr.bin/cvs/admin.c
302
eargv = cvs_strsplit(elist, ",");
usr.bin/cvs/admin.c
53
static char *alist, *comment, *elist, *logmsg, *logstr, *koptstr;
usr.bin/cvs/admin.c
66
alist = comment = elist = logmsg = logstr = NULL;
usr.bin/cvs/admin.c
83
elist = optarg;
usr.bin/gprof/arcs.c
821
|| ( !fflag && !onlist( elist , childp -> name ) ) ) {
usr.bin/gprof/arcs.c
831
&& onlist( elist , childp -> name ) ) {
usr.bin/gprof/gprof.c
127
addlist( elist , *argv );
usr.bin/gprof/gprof.c
131
addlist( elist , *++argv );
usr.bin/gprof/gprof.c
191
addlist( elist , *sp );
usr.bin/gprof/gprof.h
222
extern struct stringlist *elist;
usr.bin/gprof/printlist.c
52
struct stringlist *elist = &ehead;
usr.bin/rcs/rcsprog.c
189
char *alist, *comment, *elist, *lrev, *urev;
usr.bin/rcs/rcsprog.c
201
logstr = alist = comment = elist = NULL;
usr.bin/rcs/rcsprog.c
222
elist = rcs_optarg;
usr.bin/rcs/rcsprog.c
411
if (elist != NULL) {
usr.bin/rcs/rcsprog.c
414
eargv = rcs_strsplit(elist, ",");
usr.bin/rpcgen/rpc_parse.c
247
enumval_list *elist;
usr.bin/rpcgen/rpc_parse.c
257
elist = malloc(sizeof(enumval_list));
usr.bin/rpcgen/rpc_parse.c
258
elist->name = tok.str;
usr.bin/rpcgen/rpc_parse.c
259
elist->assignment = NULL;
usr.bin/rpcgen/rpc_parse.c
263
elist->assignment = tok.str;
usr.bin/rpcgen/rpc_parse.c
266
*tailp = elist;
usr.bin/rpcgen/rpc_parse.c
267
tailp = &elist->next;