Searched refs:BUFSIZ (Results 1 - 25 of 323) sorted by relevance

1234567891011>>

/openbsd-current/games/hangman/
H A Dextern.c38 char Word[BUFSIZ], Known[BUFSIZ];
H A Dhangman.h65 extern char Word[BUFSIZ], Known[BUFSIZ];
H A Dgetword.c64 if (fgets(Word, BUFSIZ, inf) == NULL)
66 if (fgets(Word, BUFSIZ, inf) == NULL)
H A Dksyms.c39 char symbuf[1 + BUFSIZ], *sym, *end;
46 buflen = read(symfd, symbuf, BUFSIZ);
/openbsd-current/lib/libc/stdio/
H A Dsetbuf.c40 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
H A Dmakebuf.c86 *bufsize = BUFSIZ;
93 *bufsize = BUFSIZ;
H A Dungetc.c56 if ((p = malloc(BUFSIZ)) == NULL)
59 _UB(fp)._size = BUFSIZ;
60 p += BUFSIZ - sizeof(fp->_ubuf);
H A Dvdprintf.c55 unsigned char buf[BUFSIZ];
/openbsd-current/lib/libcrypto/ui/
H A Dui_util.c65 char buff[BUFSIZ];
68 ret = UI_UTIL_read_pw(buf, buff, (length > BUFSIZ) ? BUFSIZ : length,
70 explicit_bzero(buff, BUFSIZ);
/openbsd-current/usr.bin/grep/
H A Dbinary.c47 char buf[BUFSIZ];
54 if ((m = fread(buf, 1, BUFSIZ, f)) == 0)
68 char buf[BUFSIZ];
75 if ((m = gzread(f, buf, BUFSIZ)) <= 0)
92 return isbinary(f->base, f->len < BUFSIZ ? f->len : BUFSIZ);
/openbsd-current/usr.bin/unexpand/
H A Dunexpand.c42 char genbuf[BUFSIZ];
43 char linebuf[BUFSIZ];
75 while (fgets(genbuf, BUFSIZ, stdin) != NULL) {
/openbsd-current/regress/lib/libc/orientation/
H A Dorientation_test.c112 char buffer[BUFSIZ];
113 wchar_t wbuffer[BUFSIZ];
162 TEST_UNCHANGED(setvbuf(f, buffer, _IONBF, BUFSIZ));
163 TEST_UNCHANGED(setvbuf(f, buffer, _IOLBF, BUFSIZ));
164 TEST_UNCHANGED(setvbuf(f, buffer, _IOFBF, BUFSIZ));
169 TEST_UNCHANGED(setbuffer(f, buffer, BUFSIZ));
181 TEST_NARROW(fgets(buffer, BUFSIZ, f));
209 TEST_NARROW(fread(buffer, 4, BUFSIZ / 4, f));
210 TEST_NARROW(fwrite(buffer, 4, BUFSIZ / 4, f));
227 TEST_WIDE(fgetws(wbuffer, BUFSIZ,
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dxcoffout.h185 #ifdef BUFSIZ
193 #endif /* BUFSIZ */
197 #ifdef BUFSIZ
199 #endif /* BUFSIZ */
203 #ifdef BUFSIZ
206 #endif /* BUFSIZ */
H A Dtoplev.h91 #ifdef BUFSIZ
99 #ifdef BUFSIZ
/openbsd-current/sbin/nologin/
H A Dnologin.c46 char nbuf[BUFSIZ];
/openbsd-current/usr.bin/telnet/
H A Dnetwork.c41 unsigned char netobuf[2*BUFSIZ], netibuf[BUFSIZ];
H A Dterminal.c40 unsigned char ttyobuf[2*BUFSIZ], ttyibuf[BUFSIZ];
/openbsd-current/lib/libexpat/examples/
H A Delements.c92 void *const buf = XML_GetBuffer(parser, BUFSIZ);
99 const size_t len = fread(buf, 1, BUFSIZ, stdin);
H A Doutline.c95 void *const buf = XML_GetBuffer(parser, BUFSIZ);
102 const size_t len = fread(buf, 1, BUFSIZ, stdin);
/openbsd-current/usr.sbin/config/
H A Dmkheaders.c89 char buf[BUFSIZ];
90 char fname[BUFSIZ];
126 char new_contents[BUFSIZ], buf[BUFSIZ];
127 char fname[BUFSIZ];
/openbsd-current/usr.sbin/mkuboot/
H A Dmkuboot.c312 char buf[BUFSIZ];
315 chunk = size > BUFSIZ ? BUFSIZ : size;
337 nbytes = size > BUFSIZ ? BUFSIZ : size;
354 char buf[BUFSIZ];
356 memset(buf, 0, BUFSIZ);
358 chunk = size > BUFSIZ ? BUFSIZ : size;
375 char buf[BUFSIZ];
[all...]
/openbsd-current/lib/libcrypto/evp/
H A Devp_key.c105 char buff[BUFSIZ];
108 if (len > BUFSIZ)
109 len = BUFSIZ;
131 explicit_bzero(buff, BUFSIZ);
/openbsd-current/lib/libcurses/base/
H A Dlib_scanw.c51 char buf[BUFSIZ];
66 char buf[BUFSIZ];
/openbsd-current/bin/csh/
H A Dlex.c110 static Char labuf[BUFSIZ];
225 Char wbuf[BUFSIZ];
230 i = BUFSIZ - 4;
601 Char buf[BUFSIZ];
872 Char wbuf[BUFSIZ];
893 i = BUFSIZ - 4;
1382 Char ttyline[BUFSIZ];
1383 char tbuf[BUFSIZ + 1];
1395 c = read(SHIN, tbuf, BUFSIZ);
1409 buf = (int) fseekp / BUFSIZ;
[all...]
/openbsd-current/usr.bin/sendbug/
H A Dsendbug.c58 char os[BUFSIZ], rel[BUFSIZ], mach[BUFSIZ], details[BUFSIZ];
132 char buf[BUFSIZ];
193 char buf[BUFSIZ];
232 char buf[BUFSIZ];
605 char buf[BUFSIZ];
639 char buf[BUFSIZ];

Completed in 428 milliseconds

1234567891011>>