HomeSort by: relevance | last modified time | path
    Searched defs:newlines (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/am-utils/dist/amd/
conf_parse.y 85 file : { yydebug = PARSE_DEBUG; } newlines map_sections
89 newlines : NEWLINE label
90 | NEWLINE newlines
  /src/external/gpl2/groff/dist/src/devices/grohtml/
html.h 86 int newlines; // can we issue newlines automatically? member in class:simple_output
  /src/lib/libcurses/
resize.c 227 int newlines, newcols; local
229 newlines = win->reqy;
230 if (win->begy + newlines >= nlines)
231 newlines = 0;
232 if (newlines == 0)
233 newlines = nlines - win->begy;
241 return __resizewin(win, newlines, newcols);
251 __LINE *lp, *olp, **newlines, *newlspace; local
280 newlines = realloc(win->alines, nlines * sizeof(__LINE *));
281 if (newlines == NULL
    [all...]
  /src/usr.bin/indent/
io.c 55 static unsigned newlines = 2; /* the total of written and buffered newlines; variable
118 newlines++;
142 newlines = s[i] == '\n' ? newlines + 1 : 0;
160 newlines = 0;
167 newlines = 0;
210 return newlines >= 1;
212 return newlines >= 2;
213 return newlines >= 3
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/generic/
scanner.h 41 // includes one (or more) quote characters. also, for comments, only newlines
46 uint64_t newlines,
58 end = (newlines & in_comment) | (quotes & in_quoted);
71 end = (newlines & -semicolon) | (quotes & (-quote - quote));
146 // escaped newlines are classified as contiguous. however, escape sequences
147 // have no meaning in comments and newlines, escaped or not, have no
218 // take slow path if (escaped) newlines appear in contiguous or quoted
221 // parser. escaped newlines may have been present in the last block
222 uint64_t newlines = block->newline & (block->contiguous | block->in_quoted); local
224 // non-delimiting tokens may contain (escaped) newlines. tracking newline
    [all...]
  /src/external/bsd/nsd/dist/simdzone/include/
zone.h 370 struct { uint16_t *head, *tail, tape[ZONE_TAPE_SIZE + 1]; } newlines; member in struct:zone_file
  /src/external/gpl2/grep/dist/src/
grep.c 499 size_t newlines = 0; local
502 newlines++;
503 totalnl = add_count (totalnl, newlines);
  /src/external/gpl3/gcc.old/dist/libcpp/
files.cc 937 increment. So push a writable buffer of two newlines to acheive
941 static uchar newlines[] = "\n\n\n"; local
942 cpp_push_buffer (pfile, newlines, 2, true);

Completed in 36 milliseconds