| /dragonfly/contrib/libarchive/libarchive/ |
| HD | archive_read_support_format_warc.c | 658 const char *val, *eol; in _warc_rdtyp() local 665 if ((eol = _warc_find_eol(val, buf + bsz - val)) == NULL) { in _warc_rdtyp() 671 while (val < eol && (*val == ' ' || *val == '\t')) in _warc_rdtyp() 674 if (val + 8U == eol) { in _warc_rdtyp() 687 const char *val, *uri, *eol, *p; in _warc_rduri() local 696 if ((eol = _warc_find_eol(val, buf + bsz - val)) == NULL) { in _warc_rduri() 701 while (val < eol && (*val == ' ' || *val == '\t')) in _warc_rduri() 705 if ((uri = xmemmem(val, eol - val, "://", 3U)) == NULL) { in _warc_rduri() 711 for (p = val; p < eol; p++) { in _warc_rduri() 730 while (uri < eol && *uri++ != '/'); in _warc_rduri() [all …]
|
| /dragonfly/usr.bin/lam/ |
| HD | lam.c | 53 char eol; /* end of line character */ member 113 if (!ip->eol) in getargs() 114 ip->eol = (T ? (ip-1)->eol : '\n'); in getargs() 129 ip->eol = *p; in getargs() 192 if ((*p = c) == ip->eol) in gatherline()
|
| /dragonfly/test/testcases/crypto/aes/ |
| HD | aestest.c | 245 char buf[1024], *eol; in run_file() local 260 eol = buf + strlen(buf) - 1; in run_file() 261 if (*eol != '\n') in run_file() 263 if (eol > buf && *(eol - 1) == '\r') in run_file() 264 eol--; in run_file() 265 *eol = '\0'; in run_file()
|
| /dragonfly/test/testcases/crypto/twofish/ |
| HD | twofish_test.c | 260 char buf[1024], *eol; in run_file() local 276 eol = buf + strlen(buf) - 1; in run_file() 277 if (*eol != '\n') in run_file() 279 if (eol > buf && *(eol - 1) == '\r') in run_file() 280 eol--; in run_file() 281 *eol = '\0'; in run_file()
|
| /dragonfly/test/testcases/crypto/serpent/ |
| HD | serpent_test.c | 260 char buf[1024], *eol; in run_file() local 276 eol = buf + strlen(buf) - 1; in run_file() 277 if (*eol != '\n') in run_file() 279 if (eol > buf && *(eol - 1) == '\r') in run_file() 280 eol--; in run_file() 281 *eol = '\0'; in run_file()
|
| /dragonfly/contrib/grep/src/ |
| HD | kwsearch.c | 157 char eol = eolbyte; in Fexecute() local 233 char const *nl = memrchr (mb_start, eol, beg - mb_start); in Fexecute() 262 end = memchr (beg + len, eol, (buf + size) - (beg + len)); in Fexecute() 288 end = memchr (beg + len, eol, (buf + size) - (beg + len)); in Fexecute() 291 beg = memrchr (buf, eol, beg - buf); in Fexecute()
|
| HD | dfasearch.c | 337 char eol = eolbyte; in EGexecute() local 375 beg = memrchr (buf, eol, match - buf); in EGexecute() 392 end = memchr (end, eol, buflim - end); in EGexecute() 424 beg = memrchr (buf, eol, next_beg - buf); in EGexecute() 428 end = memchr (next_beg, eol, buflim - next_beg); in EGexecute() 446 beg = memrchr (buf, eol, next_beg - buf); in EGexecute() 449 end = memchr (next_beg, eol, buflim - next_beg); in EGexecute()
|
| HD | grep.c | 1301 char eol = eolbyte; in prtext() local 1317 while (p[-1] != eol); in prtext() 1332 char *nl = memchr (p, eol, beg - p); in prtext() 1345 char *nl = memchr (p, eol, lim - p); in prtext() 1372 zap_nuls (char *p, char *lim, char eol) in zap_nuls() argument 1374 if (eol) in zap_nuls() 1379 *lim = eol; in zap_nuls() 1383 *p++ = eol; in zap_nuls() 1441 char eol = eolbyte; in grep() local 1460 skip_nuls = skip_empty_lines && !eol; in grep() [all …]
|
| /dragonfly/contrib/nvi2/vi/ |
| HD | v_right.c | 37 goto eol; in v_right() 43 eol: v_eol(sp, NULL); in v_right()
|
| /dragonfly/contrib/zlib-1.2/ |
| HD | gzread.c | 550 unsigned char *eol; local 586 eol = (unsigned char *)memchr(state->x.next, '\n', n); 587 if (eol != NULL) 588 n = (unsigned)(eol - state->x.next) + 1; 597 } while (left && eol == NULL);
|
| /dragonfly/libexec/dma/ |
| HD | mail.c | 236 goto eol; in parse_addrs() 265 goto eol; in parse_addrs() 327 eol: in parse_addrs()
|
| /dragonfly/crypto/libressl/crypto/asn1/ |
| HD | asn_mime.c | 537 char eol; in SMIME_crlf_copy() local 556 eol = strip_eol(linebuf, &len); in SMIME_crlf_copy() 559 if (eol) in SMIME_crlf_copy() 610 int eol = 0, next_eol = 0; in multi_split() local 645 } else if (eol) in multi_split() 647 eol = next_eol; in multi_split()
|
| /dragonfly/contrib/binutils-2.34/gas/ |
| HD | read.c | 565 char *eol = find_end_of_line (input_line_pointer - (num_read), \ 568 && eol >= buffer_limit) \ 570 : eol + 1; \ 2352 char * eol; in s_irp() local 2361 eol = find_end_of_line (input_line_pointer, 0); in s_irp() 2362 sb_build (&s, eol - input_line_pointer); in s_irp() 2363 sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer); in s_irp() 2364 input_line_pointer = eol; in s_irp() 2647 char *eol; in get_line_sb() local 2659 eol = _find_end_of_line (input_line_pointer, flag_m68k_mri, 0, in_macro); in get_line_sb() [all …]
|
| /dragonfly/contrib/tcpdump/ |
| HD | util-print.c | 814 u_int idx, eol; in txtproto_print() local 901 … idx < len && (eol = print_txt_line(ndo, "\n\t", pptr, idx, len)) != 0; in txtproto_print() 902 idx = eol) in txtproto_print()
|
| /dragonfly/usr.bin/top/ |
| HD | display.c | 327 display_write(int x, int y, int newcolor, int eol, char *new) in display_write() argument 336 x, y, newcolor, eol, new); in display_write() 419 if (eol && *bufp != '\0') in display_write() 453 display_fmt(int x, int y, int newcolor, int eol, char *fmt, ...) in display_fmt() argument 461 display_write(x, y, newcolor, eol, scratchbuf); in display_fmt()
|
| /dragonfly/contrib/dhcpcd/src/ |
| HD | dhcp-common.c | 877 size_t i, eos, eol; in dhcp_envoption() local 964 while ((eod = dgetopt(ctx, &eos, &eoc, &eol, od, ol, &oopt))) { in dhcp_envoption() 978 dgetopt, eod, eol); in dhcp_envoption() 980 od += eos + eol; in dhcp_envoption() 981 ol -= eos + eol; in dhcp_envoption()
|
| /dragonfly/contrib/binutils-2.27/gas/ |
| HD | read.c | 563 char *eol = find_end_of_line (input_line_pointer - (num_read), \ 566 && eol >= buffer_limit) \ 568 : eol + 1; \ 2350 char * eol; in s_irp() local 2359 eol = find_end_of_line (input_line_pointer, 0); in s_irp() 2360 sb_build (&s, eol - input_line_pointer); in s_irp() 2361 sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer); in s_irp() 2362 input_line_pointer = eol; in s_irp() 2645 char *eol; in get_line_sb() local 2657 eol = _find_end_of_line (input_line_pointer, flag_m68k_mri, 0, in_macro); in get_line_sb() [all …]
|
| /dragonfly/usr.sbin/burncd/ |
| HD | burncd.c | 235 char file_buf[MAXPATHLEN + 1], *eol; in main() local 244 if ((eol = strchr(file_buf, '\n'))) in main() 245 *eol = 0; in main()
|
| /dragonfly/sys/dev/misc/syscons/ |
| HD | scmouse.c | 420 int eol; in mouse_cut_word() local 445 eol = sol + scp->xsize; in mouse_cut_word() 455 for (j = scp->mouse_pos; j < eol; ++j) { in mouse_cut_word() 469 for (j = scp->mouse_pos; j < eol; ++j) { in mouse_cut_word()
|
| /dragonfly/contrib/binutils-2.27/binutils/ |
| HD | objcopy.c | 991 char * eol; in add_specific_symbols() local 996 for (eol = line;; eol ++) in add_specific_symbols() 998 switch (* eol) in add_specific_symbols() 1001 * eol = '\0'; in add_specific_symbols() 1003 if (eol[1] == '\r') in add_specific_symbols() 1004 ++ eol; in add_specific_symbols() 1009 * eol = '\0'; in add_specific_symbols() 1011 if (eol[1] == '\n') in add_specific_symbols() 1012 ++ eol; in add_specific_symbols() 1024 * eol = '\0'; in add_specific_symbols() [all …]
|
| /dragonfly/usr.sbin/newsyslog/ |
| HD | newsyslog.c | 1082 int eol, ptm_opts, res, special; in parse_file() local 1252 eol = !*parse; in parse_file() 1289 if (eol) in parse_file() 1295 eol = 1; in parse_file() 1353 if (eol) in parse_file() 1359 eol = 1; in parse_file() 1375 if (eol) in parse_file()
|
| /dragonfly/contrib/binutils-2.34/binutils/ |
| HD | objcopy.c | 1103 char * eol; in add_specific_symbols() local 1108 for (eol = line;; eol ++) in add_specific_symbols() 1110 switch (* eol) in add_specific_symbols() 1113 * eol = '\0'; in add_specific_symbols() 1115 if (eol[1] == '\r') in add_specific_symbols() 1116 ++ eol; in add_specific_symbols() 1121 * eol = '\0'; in add_specific_symbols() 1123 if (eol[1] == '\n') in add_specific_symbols() 1124 ++ eol; in add_specific_symbols() 1136 * eol = '\0'; in add_specific_symbols() [all …]
|
| /dragonfly/lib/libc/gen/ |
| HD | getgrent.c | 1472 const char *p, *eol; in __gr_match_entry() local 1484 eol = &line[linesize]; in __gr_match_entry() 1485 for (p = line, i = 0; i < needed && p < eol; p++) in __gr_match_entry() 1499 if (q < eol && *q == ':' && gid == (gid_t)n) in __gr_match_entry()
|
| /dragonfly/contrib/ee/ |
| HD | ee.c | 308 void eol P_((void)); 1228 eol(); in control() 1277 eol(); in emacs_control() 1549 eol(); in function_key() 1627 eol(); in function_key() 3013 eol() /* go to end of line */ in eol() function 4007 eol(); in Format() 4598 eol(); in Auto_Format() 4651 eol(); in Auto_Format()
|
| /dragonfly/contrib/grep/lib/ |
| HD | dfa.c | 3402 unsigned char eol = d->syntax.eolbyte; /* Likewise for eolbyte. */ in dfaexec_main() local 3404 *end = eol; in dfaexec_main() 3475 else if ((char *) p <= end && p[-1] == eol && 0 <= d->newlines[s1]) in dfaexec_main() 3483 : d->syntax.sbit[eol] == CTX_NEWLINE ? 0 in dfaexec_main() 3484 : d->syntax.sbit[eol] == CTX_LETTER ? d->min_trcount - 1 in dfaexec_main()
|