Symbol: clist
bin/dd/args.c
272
} clist[] = {
bin/dd/args.c
299
for (cp = &clist[0]; cp->name; cp++)
sys/arch/sparc64/dev/pcons.c
307
struct clist *cl;
sys/dev/usb/ugen.c
78
struct clist q;
sys/dev/usb/uhid.h
41
struct clist sc_q;
sys/kern/tty.c
1457
struct clist tq;
sys/kern/tty.c
1493
struct clist *qp;
sys/kern/tty.c
911
struct clist tq;
sys/kern/tty_subr.c
118
q_to_b(struct clist *clp, u_char *cp, int count)
sys/kern/tty_subr.c
154
ndqb(struct clist *clp, int flag)
sys/kern/tty_subr.c
196
ndflush(struct clist *clp, int count)
sys/kern/tty_subr.c
230
putc(int c, struct clist *clp)
sys/kern/tty_subr.c
307
b_to_q(u_char *cp, int count, struct clist *clp)
sys/kern/tty_subr.c
357
nextc(struct clist *clp, u_char *cp, int *c, int *ccp)
sys/kern/tty_subr.c
391
firstc(struct clist *clp, int *c, int *ccp)
sys/kern/tty_subr.c
411
unputc(struct clist *clp)
sys/kern/tty_subr.c
444
catq(struct clist *from, struct clist *to)
sys/kern/tty_subr.c
460
struct clist tmp;
sys/kern/tty_subr.c
53
clalloc(struct clist *clp, int size, int quot)
sys/kern/tty_subr.c
70
clfree(struct clist *clp)
sys/kern/tty_subr.c
88
getc(struct clist *clp)
sys/sys/tty.h
104
struct clist t_rawq; /* Device raw input queue. */
sys/sys/tty.h
106
struct clist t_canq; /* Device canonical queue. */
sys/sys/tty.h
108
struct clist t_outq; /* Device output queue. */
sys/sys/tty.h
255
int b_to_q(u_char *cp, int cc, struct clist *q);
sys/sys/tty.h
256
void catq(struct clist *from, struct clist *to);
sys/sys/tty.h
257
int getc(struct clist *q);
sys/sys/tty.h
258
void ndflush(struct clist *q, int cc);
sys/sys/tty.h
259
int ndqb(struct clist *q, int flag);
sys/sys/tty.h
260
u_char *firstc(struct clist *clp, int *c, int *cc);
sys/sys/tty.h
261
u_char *nextc(struct clist *q, u_char *cp, int *c, int *cc);
sys/sys/tty.h
262
int putc(int c, struct clist *q);
sys/sys/tty.h
263
int q_to_b(struct clist *q, u_char *cp, int cc);
sys/sys/tty.h
264
int unputc(struct clist *q);
sys/sys/tty.h
307
void clalloc(struct clist *, int, int);
sys/sys/tty.h
308
void clfree(struct clist *);
usr.bin/cvs/diff_internals.c
229
static struct cand *clist; /* merely a free storage pot for candidates */
usr.bin/cvs/diff_internals.c
394
clist = xcalloc(clistlen, sizeof(*clist));
usr.bin/cvs/diff_internals.c
401
free(clist);
usr.bin/cvs/diff_internals.c
567
if (y <= clist[oldc].y)
usr.bin/cvs/diff_internals.c
573
if (clist[c[l]].y <= y)
usr.bin/cvs/diff_internals.c
597
clist = xreallocarray(clist, clistlen, sizeof(*clist));
usr.bin/cvs/diff_internals.c
599
q = clist + clen;
usr.bin/cvs/diff_internals.c
611
if (clist[c[k]].y < y) /* quick look for typical case */
usr.bin/cvs/diff_internals.c
619
t = clist[c[l]].y;
usr.bin/cvs/diff_internals.c
639
for (q = clist + p; q->y != 0; q = clist + q->pred)
usr.bin/diff/diffreg.c
220
static struct cand *clist; /* merely a free storage pot for candidates */
usr.bin/diff/diffreg.c
390
clist = xcalloc(clistlen, sizeof(*clist));
usr.bin/diff/diffreg.c
397
free(clist);
usr.bin/diff/diffreg.c
616
if (y <= clist[oldc].y)
usr.bin/diff/diffreg.c
622
if (clist[c[l]].y <= y)
usr.bin/diff/diffreg.c
646
clist = xreallocarray(clist, clistlen, sizeof(*clist));
usr.bin/diff/diffreg.c
648
q = clist + clen;
usr.bin/diff/diffreg.c
660
if (clist[c[k]].y < y) /* quick look for typical case */
usr.bin/diff/diffreg.c
668
t = clist[c[l]].y;
usr.bin/diff/diffreg.c
688
for (q = clist + p; q->y != 0; q = clist + q->pred)
usr.bin/rcs/diff.c
226
static struct cand *clist; /* merely a free storage pot for candidates */
usr.bin/rcs/diff.c
376
clist = xcalloc(clistlen, sizeof(*clist));
usr.bin/rcs/diff.c
383
free(clist);
usr.bin/rcs/diff.c
549
if (y <= clist[oldc].y)
usr.bin/rcs/diff.c
555
if (clist[c[l]].y <= y)
usr.bin/rcs/diff.c
579
clist = xreallocarray(clist, clistlen, sizeof(*clist));
usr.bin/rcs/diff.c
581
q = clist + clen;
usr.bin/rcs/diff.c
593
if (clist[c[k]].y < y) /* quick look for typical case */
usr.bin/rcs/diff.c
601
t = clist[c[l]].y;
usr.bin/rcs/diff.c
621
for (q = clist + p; q->y != 0; q = clist + q->pred)