Home
last modified time | relevance | path

Searched refs:MAXLINELEN (Results 1 – 7 of 7) sorted by relevance

/NextBSD/usr.sbin/crunch/crunchgen/
HDcrunchgen.c50 #define MAXLINELEN 16384 macro
284 char line[MAXLINELEN]; in parse_one_file()
297 while (fgets(line, MAXLINELEN, cf) != NULL) { in parse_one_file()
635 char line[MAXLINELEN]; in fillin_program()
638 snprintf(line, MAXLINELEN, "filling in parms for %s", p->name); in fillin_program()
651 snprintf(line, MAXLINELEN, "cd %s && echo -n `/bin/pwd`", in fillin_program()
687 snprintf(line, MAXLINELEN, "Using %s for %s", path, p->name); in fillin_program()
715 char line[MAXLINELEN]; in fillin_program_objs()
756 snprintf(line, MAXLINELEN, "cd %s && %s -f %s -B crunchgen_objs", in fillin_program_objs()
764 while(fgets(line, MAXLINELEN, f)) { in fillin_program_objs()
[all …]
/NextBSD/usr.bin/column/
HDcolumn.c275 #define MAXLINELEN (LINE_MAX + 1) macro
282 wchar_t *p, buf[MAXLINELEN]; in input()
288 while (fgetws(buf, MAXLINELEN, fp)) { in input()
/NextBSD/usr.sbin/fmtree/
HDcreate.c68 #define MAXLINELEN 80 macro
169 offset = MAXLINELEN; in statf()
423 if (*offset + strlen(buf) > MAXLINELEN - 3) { in output()
/NextBSD/contrib/file/src/
HDascmagic.c50 #define MAXLINELEN 300 /* longest sane line length */ macro
176 if (i > last_line_end + MAXLINELEN) in file_ascmagic_with_encoding()
/NextBSD/contrib/mtree/
HDcreate.c80 #define MAXLINELEN 80 macro
195 offset = MAXLINELEN; in statf()
471 if (*offset + strlen(buf) > MAXLINELEN - 3) { in output()
/NextBSD/contrib/libarchive/libarchive/
HDarchive_write_set_format_mtree.c46 #define MAXLINELEN 80 macro
410 if (pd + (r - s) <= MAXLINELEN - 3 - INDENTNAMELEN) in mtree_indent()
429 if (x != NULL && pd + strlen(s) > MAXLINELEN - 3 - INDENTNAMELEN) { in mtree_indent()
/NextBSD/contrib/file/
HDChangeLog1356 If a line has length exactly MAXLINELEN, it should not yet be
1357 treated as a ``very long line'', as MAXLINELEN is ``longest sane
1360 lines of length MAXLINELEN - 1 were treated as ``very long''.