Searched refs:LINESIZE (Results 1 - 13 of 13) sorted by relevance

/freebsd-12-stable/tools/regression/netinet6/inet6_rth/
H A Dtest_subr.c43 char g_testdesc[LINESIZE];
44 char g_errbuf[LINESIZE];
61 char sbuf[LINESIZE];
63 memset((void *)sbuf, 0, LINESIZE);
64 snprintf(g_testdesc, LINESIZE, desc);
69 len = snprintf(sbuf, LINESIZE, "ok");
73 len = snprintf(sbuf, LINESIZE, "not ok");
74 snprintf(g_errbuf, LINESIZE, " : Expected %#x, but got %#x",
78 snprintf(sbuf + len, LINESIZE - len, " %d - %s (%s)",
85 memset((void *)g_errbuf, 0, LINESIZE);
[all...]
H A Dtest_subr.h31 #define LINESIZE 256 macro
38 extern char g_testdesc[LINESIZE];
39 extern char g_errbuf[LINESIZE];
/freebsd-12-stable/usr.bin/mail/
H A Dutil.c138 char linebuf[LINESIZE];
146 if (readline(ibuf, linebuf, LINESIZE) < 0)
166 char line2[LINESIZE];
173 if ((c = readline(f, linebuf, LINESIZE)) <= 0)
195 if ((c = readline(f, line2, LINESIZE)) < 0)
201 if (cp + c >= linebuf + LINESIZE - 2)
501 char namebuf[LINESIZE];
502 char linebuf[LINESIZE];
513 if (readline(ibuf, linebuf, LINESIZE) < 0)
522 cp2 < namebuf + LINESIZE
[all...]
H A Dcollect.c79 char linebuf[LINESIZE], tempname[PATHSIZE], *cp, getsub;
159 c = readline(stdin, linebuf, LINESIZE);
170 longline = c == LINESIZE - 1;
391 while ((rc = readline(fbuf, linebuf, LINESIZE)) >= 0) {
392 if (rc != LINESIZE - 1)
395 rc != LINESIZE - 1)) < 0) {
H A Dcmd1.c171 char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind;
178 (void)readline(setinput(mp), headline, LINESIZE); local
372 char *valtop, linebuf[LINESIZE];
H A Ddef.h64 #define LINESIZE BUFSIZ /* max readable line width */ macro
H A Dhead.c98 char word[LINESIZE];
H A Dlex.c205 char linebuf[LINESIZE];
236 if (readline(input, &linebuf[n], LINESIZE - n) < 0) {
281 char word[LINESIZE];
H A Dsend.c62 char *cp, *cp2, line[LINESIZE];
211 c = count < LINESIZE ? count : LINESIZE;
H A Dcmd2.c460 char field[LINESIZE];
H A Dfio.c68 char linebuf[LINESIZE], pathbuf[PATHSIZE];
/freebsd-12-stable/crypto/openssl/crypto/pem/
H A Dpem_lib.c711 /* The caller allocated LINESIZE+1, so this is safe. */
717 #define LINESIZE 255 macro
735 linebuf = pem_malloc(LINESIZE + 1, flags);
742 len = BIO_gets(bp, linebuf, LINESIZE);
767 pem_free(linebuf, flags, LINESIZE + 1);
802 linebuf = pem_malloc(LINESIZE + 1, flags);
810 len = BIO_gets(bp, linebuf, LINESIZE);
822 partial_line_read = len == LINESIZE-1 && linebuf[LINESIZE-2] != '\n';
889 pem_free(linebuf, flags, LINESIZE
[all...]
/freebsd-12-stable/contrib/byacc/
H A Dreader.c7 /* Note that if a line exceeds LINESIZE characters, the line buffer */
10 #define LINESIZE 100 macro
260 if (line == NULL || linesize != (LINESIZE + 1))
264 linesize = LINESIZE + 1;
278 linesize += LINESIZE;

Completed in 221 milliseconds