Symbol: Buf
games/hunt/hunt/playit.c
225
static char Buf[BUFSIZ];
games/hunt/hunt/playit.c
228
count = read(STDIN_FILENO, Buf, sizeof Buf);
games/hunt/hunt/playit.c
244
Buf[count] = '\0';
games/hunt/hunt/playit.c
245
for (sp = Buf, nsp = inp; *sp != '\0'; sp++, nsp++) {
games/hunt/huntd/answer.c
381
(void) snprintf(Buf, sizeof Buf, "%5.2f%c%-10.10s %c",
games/hunt/huntd/answer.c
384
len = strlen(Buf);
games/hunt/huntd/answer.c
391
outyx(pp, y, STAT_NAME_COL, Buf, len);
games/hunt/huntd/answer.c
396
outyx(pp, y, STAT_NAME_COL, Buf, len);
games/hunt/huntd/extern.c
40
char Buf[BUFSIZ]; /* general scribbling buffer */
games/hunt/huntd/server.h
278
extern char Buf[BUFSIZ];
regress/lib/libc/arc4random-fork/arc4random-fork.c
116
bufparent = mmap(NULL, sizeof(Buf), PROT_READ|PROT_WRITE,
regress/lib/libc/arc4random-fork/arc4random-fork.c
120
bufchildone = mmap(NULL, sizeof(Buf), PROT_READ|PROT_WRITE,
regress/lib/libc/arc4random-fork/arc4random-fork.c
124
bufchildtwo = mmap(NULL, sizeof(Buf), PROT_READ|PROT_WRITE,
regress/lib/libc/arc4random-fork/arc4random-fork.c
49
isfullbuf(const Buf *buf)
regress/lib/libc/arc4random-fork/arc4random-fork.c
59
fillbuf(Buf *buf)
regress/lib/libc/arc4random-fork/arc4random-fork.c
90
Buf *bufparent, *bufchildone, *bufchildtwo;
usr.bin/lex/buf.c
129
struct Buf *
usr.bin/lex/buf.c
130
buf_concat(struct Buf * dest, const struct Buf * src)
usr.bin/lex/buf.c
138
struct Buf *
usr.bin/lex/buf.c
139
buf_strnappend(struct Buf *buf, const char *str, int n)
usr.bin/lex/buf.c
150
struct Buf *
usr.bin/lex/buf.c
151
buf_strappend(struct Buf *buf, const char *str)
usr.bin/lex/buf.c
157
struct Buf *
usr.bin/lex/buf.c
158
buf_strdefine(struct Buf *buf, const char *str, const char *def)
usr.bin/lex/buf.c
175
struct Buf *
usr.bin/lex/buf.c
176
buf_m4_define(struct Buf * buf, const char *def, const char *val)
usr.bin/lex/buf.c
198
struct Buf *
usr.bin/lex/buf.c
199
buf_m4_undefine(struct Buf * buf, const char *def)
usr.bin/lex/buf.c
217
buf_init(struct Buf *buf, size_t elem_size)
usr.bin/lex/buf.c
227
buf_destroy(struct Buf *buf)
usr.bin/lex/buf.c
240
struct Buf *
usr.bin/lex/buf.c
241
buf_append(struct Buf *buf, const void *ptr, int n_elem)
usr.bin/lex/buf.c
52
struct Buf userdef_buf; /**< for user #definitions triggered by cmd-line. */
usr.bin/lex/buf.c
53
struct Buf defs_buf; /**< for #define's autogenerated. List of strings. */
usr.bin/lex/buf.c
54
struct Buf yydmap_buf; /**< string buffer to hold yydmap elements */
usr.bin/lex/buf.c
55
struct Buf m4defs_buf; /**< m4 definitions. List of strings. */
usr.bin/lex/buf.c
56
struct Buf top_buf; /**< contains %top code. String buffer. */
usr.bin/lex/buf.c
58
struct Buf *
usr.bin/lex/buf.c
59
buf_print_strings(struct Buf * buf, FILE * out)
usr.bin/lex/buf.c
75
struct Buf *
usr.bin/lex/buf.c
76
buf_prints(struct Buf * buf, const char *fmt, const char *s)
usr.bin/lex/buf.c
97
struct Buf *
usr.bin/lex/buf.c
98
buf_linedir(struct Buf * buf, const char *filename, int lineno)
usr.bin/lex/flexdef.h
1064
extern void buf_init PROTO ((struct Buf * buf, size_t elem_size));
usr.bin/lex/flexdef.h
1065
extern void buf_destroy PROTO ((struct Buf * buf));
usr.bin/lex/flexdef.h
1066
extern struct Buf *buf_append
usr.bin/lex/flexdef.h
1067
PROTO ((struct Buf * buf, const void *ptr, int n_elem));
usr.bin/lex/flexdef.h
1068
extern struct Buf *buf_concat PROTO((struct Buf* dest, const struct Buf* src));
usr.bin/lex/flexdef.h
1069
extern struct Buf *buf_strappend PROTO ((struct Buf *, const char *str));
usr.bin/lex/flexdef.h
1070
extern struct Buf *buf_strnappend
usr.bin/lex/flexdef.h
1071
PROTO ((struct Buf *, const char *str, int nchars));
usr.bin/lex/flexdef.h
1072
extern struct Buf *buf_strdefine
usr.bin/lex/flexdef.h
1073
PROTO ((struct Buf * buf, const char *str, const char *def));
usr.bin/lex/flexdef.h
1074
extern struct Buf *buf_prints PROTO((struct Buf *buf, const char *fmt, const char* s));
usr.bin/lex/flexdef.h
1075
extern struct Buf *buf_m4_define PROTO((struct Buf *buf, const char* def, const char* val));
usr.bin/lex/flexdef.h
1076
extern struct Buf *buf_m4_undefine PROTO((struct Buf *buf, const char* def));
usr.bin/lex/flexdef.h
1077
extern struct Buf *buf_print_strings PROTO((struct Buf * buf, FILE* out));
usr.bin/lex/flexdef.h
1078
extern struct Buf *buf_linedir PROTO((struct Buf *buf, const char* filename, int lineno));
usr.bin/lex/flexdef.h
1080
extern struct Buf userdef_buf; /* a string buffer for #define's generated by user-options on cmd line. */
usr.bin/lex/flexdef.h
1081
extern struct Buf defs_buf; /* a char* buffer to save #define'd some symbols generated by flex. */
usr.bin/lex/flexdef.h
1082
extern struct Buf yydmap_buf; /* a string buffer to hold yydmap elements */
usr.bin/lex/flexdef.h
1083
extern struct Buf m4defs_buf; /* Holds m4 definitions. */
usr.bin/lex/flexdef.h
1084
extern struct Buf top_buf; /* contains %top code. String buffer. */
usr.bin/lex/main.c
427
struct Buf tmpbuf;