Searched refs:LINESIZE (Results 1 – 13 of 13) sorted by relevance
| /freebsd/tools/regression/netinet6/inet6_rth/ |
| H A D | test_subr.c | 40 char g_testdesc[LINESIZE]; 41 char g_errbuf[LINESIZE]; 58 char sbuf[LINESIZE]; in checkptr() 60 memset((void *)sbuf, 0, LINESIZE); in checkptr() 61 snprintf(g_testdesc, LINESIZE, desc); in checkptr() 66 len = snprintf(sbuf, LINESIZE, "ok"); in checkptr() 70 len = snprintf(sbuf, LINESIZE, "not ok"); in checkptr() 71 snprintf(g_errbuf, LINESIZE, " : Expected %#x, but got %#x", in checkptr() 75 snprintf(sbuf + len, LINESIZE - len, " %d - %s (%s)", in checkptr() 82 memset((void *)g_errbuf, 0, LINESIZE); in checkptr() [all …]
|
| H A D | test_subr.h | 29 #define LINESIZE 256 macro 36 extern char g_testdesc[LINESIZE]; 37 extern char g_errbuf[LINESIZE];
|
| /freebsd/usr.bin/mail/ |
| H A D | util.c | 130 char linebuf[LINESIZE]; in hfield() 158 char line2[LINESIZE]; in gethfield() 165 if ((c = readline(f, linebuf, LINESIZE)) <= 0) in gethfield() 193 if (cp + c >= linebuf + LINESIZE - 2) in gethfield() 494 char namebuf[LINESIZE]; in name1() 495 char linebuf[LINESIZE]; in name1() 568 char realfld[LINESIZE]; in isign()
|
| H A D | cmd1.c | 163 char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind; in printhead() 170 (void)readline(setinput(mp), headline, LINESIZE); in printhead() 364 char *valtop, linebuf[LINESIZE]; in top()
|
| H A D | send.c | 54 char *cp, *cp2, line[LINESIZE]; in sendmessage() 203 c = count < LINESIZE ? count : LINESIZE; in sendmessage()
|
| H A D | def.h | 60 #define LINESIZE BUFSIZ /* max readable line width */ macro
|
| H A D | head.c | 90 char word[LINESIZE]; in parse()
|
| H A D | lex.c | 197 char linebuf[LINESIZE]; in commands() 272 char word[LINESIZE]; in execute()
|
| H A D | cmd2.c | 453 char field[LINESIZE]; in ignore1()
|
| H A D | fio.c | 60 char linebuf[LINESIZE], pathbuf[PATHSIZE]; in setptr()
|
| H A D | collect.c | 71 char linebuf[LINESIZE], tempname[PATHSIZE], *cp, getsub; in collect()
|
| /freebsd/crypto/openssl/crypto/pem/ |
| H A D | pem_lib.c | 765 #define LINESIZE 255 macro 784 linebuf = PEM_MALLOC(LINESIZE + 1, flags); in get_name() 789 len = BIO_gets(bp, linebuf, LINESIZE); in get_name() 813 PEM_FREE(linebuf, flags, LINESIZE + 1); in get_name() 848 linebuf = PEM_MALLOC(LINESIZE + 1, flags); in get_header_and_data() 854 len = BIO_gets(bp, linebuf, LINESIZE); in get_header_and_data() 866 partial_line_read = len == LINESIZE - 1 && linebuf[LINESIZE - 2] != '\n'; in get_header_and_data() 932 PEM_FREE(linebuf, flags, LINESIZE + 1); in get_header_and_data()
|
| /freebsd/contrib/byacc/ |
| H A D | reader.c | 10 #define LINESIZE 100 macro 363 if (line == NULL || linesize != (LINESIZE + 1)) in get_line() 367 linesize = LINESIZE + 1; in get_line() 381 linesize += LINESIZE; in get_line()
|