Home
last modified time | relevance | path

Searched refs:eol (Results 1 – 25 of 52) sorted by relevance

123

/freebsd/sys/contrib/zstd/
H A D.gitattributes2 * text eol=lf
5 *.c text eol=lf
6 *.h text eol=lf
13 *.sln text eol=crlf
14 *.vcxproj* text eol=crlf
15 *.vcproj* text eol=crlf
17 *.rc text eol=crlf
20 *.bat text eol=crlf
21 *.cmd text eol=crlf
/freebsd/tools/regression/environ/
H A Denvctl.c92 print_rtrn_errno(int rtrnVal, const char *eol) in print_rtrn_errno() argument
94 printf("%d %d%s", rtrnVal, rtrnVal != 0 ? errno : 0, eol); in print_rtrn_errno()
126 const char *eol = "\n"; in main() local
170 printf("%s%s", value == NULL ? "*NULL*" : value, eol); in main()
174 print_rtrn_errno(putenv(optarg), eol); in main()
183 atoi(argv[optind])), eol); in main()
189 atoi(argv[optind + 1])), eol); in main()
194 eol = " "; in main()
200 eol); in main()
211 if (eol[0] == ' ') in main()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_support_format_warc.c666 const char *val, *eol; in _warc_rdtyp()
673 if ((eol = _warc_find_eol(val, buf + bsz - val)) == NULL) { in _warc_rdtyp()
679 while (val < eol && (*val == ' ' || *val == '\t')) in _warc_rdtyp()
682 if (val + 8U == eol) {
695 const char *val, *uri, *eol, *p; in _warc_rduri()
704 if ((eol = _warc_find_eol(val, buf + bsz - val)) == NULL) { in _warc_rduri()
709 while (val < eol && (*val == ' ' || *val == '\t')) in _warc_rduri()
713 if ((uri = xmemmem(val, eol - val, "://", 3U)) == NULL) { in _warc_rduri()
719 for (p = val; p < eol; p++) { in _warc_rduri()
738 while (uri < eol in _warc_rduri()
658 const char *val, *eol; _warc_rdtyp() local
687 const char *val, *uri, *eol, *p; _warc_rduri() local
744 const char *val, *eol; _warc_rdlen() local
778 const char *val, *eol; _warc_rdrtm() local
805 const char *val, *eol; _warc_rdmtm() local
[all...]
/freebsd/usr.bin/asa/
H A Dasa.c95 bool eol = false; in asa() local
99 if (buf[0] != '+' && eol) in asa()
125 if (eol) in asa()
130 if ((eol = (buf[len - 1] == '\n'))) in asa()
137 if (eol) in asa()
/freebsd/usr.bin/lam/
H A Dlam.c56 char eol; /* end of line character */ member
133 if (!ip->eol) in getargs()
134 ip->eol = (T ? (ip-1)->eol : '\n'); in getargs()
149 ip->eol = *p; in getargs()
211 if ((*p = c) == ip->eol) in gatherline()
/freebsd/contrib/bc/
H A D.gitattributes1 *.vcxproj eol=crlf
2 *.vcxproj.filters eol=crlf
3 *.sln eol=crlf
/freebsd/contrib/bmake/unit-tests/
H A Dcmd-errors.mk12 : $@-${UNDEFINED}-eol
27 : $@-${UNKNOWN:Z}-eol
31 : $@-eol
H A Dcmd-errors-jobs.mk33 : $@-${UNDEFINED}-eol
48 : unexpected $@-${UNKNOWN:Z}-eol
/freebsd/contrib/libdiff/lib/
H A Ddiff_atomize_text.c64 int eol = 0; in diff_data_atomize_text_lines_fd() local
66 while (eol == 0 && line_end < end) { in diff_data_atomize_text_lines_fd()
71 while (eol == 0 && i < r) { in diff_data_atomize_text_lines_fd()
81 eol = buf[i]; in diff_data_atomize_text_lines_fd()
91 if (line_end < end && eol == '\r') { in diff_data_atomize_text_lines_fd()
/freebsd/usr.sbin/config/
H A Dconfig.h57 bool eol() const { in eol() function
66 configword &eol(bool eol) { in eol() argument
67 cw_eol = eol; in eol()
H A Dmkmakefile.cc424 if (wd.eol()) in read_file()
428 while (!(wd = get_word(fp)).eof() && !wd.eol()) in read_file()
434 if (wd.eof() || wd.eol()) in read_file()
439 while (!(wd = get_word(fp)).eof() && !wd.eol()) in read_file()
447 if (wd.eol()) in read_file()
471 for (wd = get_word(fp); !wd.eol(); wd = get_word(fp)) { in read_file()
510 if (wd.eof() || wd.eol()) in read_file()
518 if (wd.eof() || wd.eol()) in read_file()
526 if (wd.eof() || wd.eol()) in read_file()
534 if (wd.eof() || wd.eol()) in read_file()
[all …]
H A Dmkoptions.cc200 if ((inw = get_word(inf)).eol() || inw.eof()) in do_option()
203 if ((inw = get_word(inf)).eol() || inw.eof()) in do_option()
206 if ((cp = get_word(inf)).eol() || cp.eof()) in do_option()
379 if (wd.eol()) in read_option_file()
382 while (!(wd = get_word(fp)).eof() && !wd.eol()) in read_option_file()
392 if (wd.eol()) { in read_option_file()
/freebsd/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y205 | eol statement
208 assign : ASSIGN VARNAME numeric {set_var(ret_number, $2, $3);} eol
209 | ASSIGN VARNAME LHB expr RHB {set_var(ret_number, $2, $<string>4);} eol
210 | ASSIGN VARNAME STRING {set_var(ret_string, $2, $3);} eol
211 | ASSIGN VARNAME BYTE {set_var(ret_byte, $2, $3);} eol
214 call : CALL result fn_name args eol {
219 call2 : CALL2 result result fn_name args eol {
224 call3 : CALL3 result result result fn_name args eol {
229 call4 : CALL4 result result result result fn_name args eol {
234 check : CHECK var returns eol {
[all …]
/freebsd/sys/tools/fdt/
H A Dembed_dtb.sh37 eol=`strings -at d $1 | grep "Device Tree Blob STOPS here" | awk '{print $1}'`
38 sz=$((eol - obs));
/freebsd/sbin/veriexec/
H A Dmanifest_parser.y103 | statement path attributes eol
104 | statement error eol {
194 eol: EOL
/freebsd/contrib/nvi/vi/
H A Dv_right.c37 goto eol; in v_right()
43 eol: v_eol(sp, NULL); in v_right()
/freebsd/sys/contrib/zlib/
H A Dgzread.c503 unsigned char *eol; in gzgets() local
539 eol = (unsigned char *)memchr(state->x.next, '\n', n); in gzgets()
540 if (eol != NULL) in gzgets()
541 n = (unsigned)(eol - state->x.next) + 1; in gzgets()
550 } while (left && eol == NULL); in gzgets()
/freebsd/sys/fs/tarfs/
H A Dtarfs_vfsops.c588 char *eol, *key, *value, *sep; in tarfs_alloc_one() local
603 eol = line + len - 1; in tarfs_alloc_one()
604 *eol = '\0'; in tarfs_alloc_one()
620 namelen = eol - value; in tarfs_alloc_one()
623 linklen = eol - value; in tarfs_alloc_one()
627 if (sep != eol) { in tarfs_alloc_one()
635 if (sep != eol) { in tarfs_alloc_one()
643 namelen = eol - value; in tarfs_alloc_one()
652 if (sep != eol) { in tarfs_alloc_one()
659 if (sep != eol) { in tarfs_alloc_one()
/freebsd/contrib/dma/
H A Dmail.c237 goto eol; in parse_addrs()
266 goto eol; in parse_addrs()
328 eol: in parse_addrs()
/freebsd/crypto/openssl/crypto/asn1/
H A Dasn_mime.c517 char eol; in SMIME_crlf_copy() local
545 eol = strip_eol(linebuf, &len, flags); in SMIME_crlf_copy()
555 if (eol) in SMIME_crlf_copy()
559 } else if (eol) { in SMIME_crlf_copy()
614 int eol = 0, next_eol = 0; in multi_split() local
652 } else if (eol) { in multi_split()
664 eol = next_eol; in multi_split()
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dgzread.c574 unsigned char *eol; local
610 eol = (unsigned char *)memchr(state.state->x.next, '\n', n);
611 if (eol != NULL)
612 n = (unsigned)(eol - state.state->x.next) + 1;
621 } while (left && eol == NULL);
/freebsd/sbin/ipf/ippool/
H A Dippool_y.y100 line: table role ipftree eol { ip_pool_node_t *n;
111 | table role ipfhash eol { iphtent_t *h;
122 | groupmap role number ipfgroup eol
137 | poolline eol
140 eol: ';'
/freebsd/contrib/file/tests/
H A DMakefile.am115 regex-eol.magic \
116 regex-eol.result \
117 regex-eol.testfile \
/freebsd/contrib/ntp/sntp/libopts/
H A Dsave.c260 char const * eol = strchr(l_arg, NL); in prt_entry() local
266 if (eol == NULL) in prt_entry()
272 (void)fwrite(l_arg, (size_t)(eol - l_arg), (size_t)1, fp); in prt_entry()
273 l_arg = eol+1; /* advance the Last Arg pointer */ in prt_entry()
/freebsd/contrib/tcpdump/
H A Dutil-print.c841 u_int idx, eol; in txtproto_print() local
928 idx < len && (eol = print_txt_line(ndo, "\n\t", pptr, idx, len)) != 0; in txtproto_print()
929 idx = eol) in txtproto_print()

123