Searched refs:eol (Results 1 - 25 of 85) sorted by relevance

1234

/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/
H A Deol.c2 * eol.c : generic eol/keyword routines
77 char *eol;
79 eol = svn_eol__find_eol_start(buf, len);
80 if (eol)
83 *eolp = eol;
85 if (*eol == '\n')
89 ++eol;
90 if (eol == buf + len || *eol !
76 char *eol; local
[all...]
/freebsd-12-stable/tools/regression/environ/
H A Denvctl.c92 * Also, use the eol string based upon whether running in test mode or not.
95 print_rtrn_errno(int rtrnVal, const char *eol) argument
97 printf("%d %d%s", rtrnVal, rtrnVal != 0 ? errno : 0, eol);
129 const char *eol = "\n"; local
173 printf("%s%s", value == NULL ? "*NULL*" : value, eol);
177 print_rtrn_errno(putenv(optarg), eol); local
186 atoi(argv[optind])), eol); local
192 atoi(argv[optind + 1])), eol); local
197 eol = " ";
203 eol); local
[all...]
/freebsd-12-stable/sys/tools/fdt/
H A Dembed_dtb.sh39 eol=`strings -at d $1 | grep "Device Tree Blob STOPS here" | awk '{print $1}'`
40 sz=$((eol - obs));
/freebsd-12-stable/contrib/subversion/subversion/libsvn_wc/
H A Dtranslate.c2 * translate.c : wc-specific eol/keyword substitution
65 const char *eol;
72 SVN_ERR(svn_wc__get_translate_info(&style, &eol,
103 if (svn_subst_translation_required(style, eol, keywords, special, TRUE))
108 eol = SVN_SUBST_NATIVE_EOL_STR;
116 eol,
128 *stream = svn_subst_stream_translated(*stream, eol, TRUE,
153 const char *eol;
159 SVN_ERR(svn_wc__get_translate_info(&style, &eol,
165 if (! svn_subst_translation_required(style, eol, keyword
64 const char *eol; local
152 const char *eol; local
228 svn_wc__eol_value_from_string(const char **value, const char *eol) argument
243 svn_wc__get_translate_info(svn_subst_eol_style_t *style, const char **eol, apr_hash_t **keywords, svn_boolean_t *special, svn_wc__db_t *db, const char *local_abspath, apr_hash_t *props, svn_boolean_t for_normalization, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
H A Dtranslate.h2 * translate.h : eol and keyword translation
43 eol style. Set *EOL to
47 - a null-terminated C string containing the native eol marker
50 - a null-terminated C string containing the eol marker indicated
83 const char **eol,
97 const char *eol);
H A Dmerge.c96 - svn:eol-style
104 If svn:mime-type is considered 'binary', we ignore svn:eol-style (but
110 detranslate with the old keywords and ... eol-style
114 -> detranslate with the old eol-style and keywords
118 -> detranslate with the old keywords and new eol-style
119 (the old detranslation is a no-op w.r.t. eol, and
126 Effect for svn:eol-style
128 I) On add or change of svn:eol-style, use the new value
172 const char *eol;
197 eol
171 const char *eol; local
317 const char *eol; local
[all...]
/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_warc.c659 const char *val, *eol;
666 if ((eol = _warc_find_eol(val, buf + bsz - val)) == NULL) {
672 while (val < eol && (*val == ' ' || *val == '\t'))
675 if (val + 8U == eol) {
688 const char *val, *uri, *eol, *p;
697 if ((eol = _warc_find_eol(val, buf + bsz - val)) == NULL) {
702 while (val < eol && (*val == ' ' || *val == '\t'))
706 if ((uri = xmemmem(val, eol - val, "://", 3U)) == NULL) {
712 for (p = val; p < eol; p++) {
731 while (uri < eol
658 const char *val, *eol; local
687 const char *val, *uri, *eol, *p; local
744 const char *val, *eol; local
778 const char *val, *eol; local
805 const char *val, *eol; local
[all...]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_client/
H A Dcat.c66 const char *eol = NULL;
120 svn_subst_eol_style_from_value(&style, &eol, eol_style->data);
169 if (eol != NULL || kw != NULL)
172 (eol_style && normalize_eols) ? SVN_SUBST_NATIVE_EOL_STR : eol,
271 /* It's a file with no special eol style or keywords. */
272 svn_subst_eol_style_t eol;
277 svn_subst_eol_style_from_value(&eol, &eol_str, eol_style->data);
280 eol = svn_subst_eol_style_none;
64 const char *eol = NULL; local
270 svn_subst_eol_style_t eol; local
/freebsd-12-stable/contrib/ntp/lib/isc/
H A Dhex.c133 isc_boolean_t eol; local
141 eol = ISC_FALSE;
143 eol = ISC_TRUE;
145 isc_tokentype_string, eol));
H A Dbase64.c184 isc_boolean_t eol; local
192 eol = ISC_FALSE;
194 eol = ISC_TRUE;
196 isc_tokentype_string, eol));
H A Dbase32.c261 isc_boolean_t eol; local
269 eol = ISC_FALSE;
271 eol = ISC_TRUE;
273 isc_tokentype_string, eol));
/freebsd-12-stable/contrib/nvi/vi/
H A Dv_right.c41 goto eol;
47 eol: v_eol(sp, NULL);
/freebsd-12-stable/usr.bin/lam/
H A Dlam.c69 char eol; /* end of line character */ member in struct:openfile
146 if (!ip->eol)
147 ip->eol = (T ? (ip-1)->eol : '\n');
162 ip->eol = *p;
224 if ((*p = c) == ip->eol)
/freebsd-12-stable/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_file.c358 /* Quickly determine whether there is a eol char in CHUNK.
359 * (mainly copy-n-paste from eol.c#svn_eol__find_eol_start).
405 /* check for eol, and count */
498 /* Back up to the last eol sequence (\n, \r\n or \r) */
503 /* Slide one byte forward, to point past the eol sequence */
607 /* Count an extra line for the last line not ending in an eol. */
622 /* check for eol, and count */
708 /* Slide forward until we find an eol sequence to add the rest of the line
719 /* Slide one or two more bytes, to point past the eol. */
863 char *eol; local
1443 char *eol; local
2141 char *eol; local
2397 const char *eol; local
[all...]
H A Dparse-diff.c94 /* Did we see a 'file does not end with eol' marker in this hunk? */
660 const char **eol,
674 if (!eol)
675 eol = &eol_p;
681 *eol = NULL;
697 SVN_ERR(svn_io_file_readline(file, &str, eol, eof, max_len,
708 *eol = NULL;
721 if (!filtered && *eof && !*eol && *str->data)
724 no eol marker line.
727 misbehave (and it knows nothing about no eol marker
657 hunk_readline_original_or_modified(apr_file_t *file, struct svn_diff__hunk_range *range, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, char verboten, svn_boolean_t no_final_eol, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
752 svn_diff_hunk_readline_original_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
773 svn_diff_hunk_readline_modified_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
794 svn_diff_hunk_readline_diff_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-12-stable/contrib/subversion/subversion/svnfsfs/
H A Dload-index-cmd.c147 svn_boolean_t eol; local
151 SVN_ERR(svn_stream_readline(input, &line, "\n", &eol, iterpool));
152 if (eol)
/freebsd-12-stable/sbin/veriexec/
H A Dmanifest_parser.y105 | statement path attributes eol
106 | statement error eol {
196 eol: EOL label
/freebsd-12-stable/contrib/file/tests/
H A DMakefile.am6 regex-eol.magic \
18 regex-eol.testfile \
47 regex-eol.result \
/freebsd-12-stable/contrib/ntp/lib/isc/include/isc/
H A Dlex.h310 isc_tokentype_t expect, isc_boolean_t eol);
328 isc_lex_getoctaltoken(isc_lex_t *lex, isc_token_t *token, isc_boolean_t eol);
/freebsd-12-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dchanges.h132 svn_boolean_t *eol; member in struct:svn_fs_x__changes_get_list_baton_t
/freebsd-12-stable/gnu/usr.bin/grep/
H A Dsearch.c328 char eol = eolbyte; local
420 end = memchr(beg, eol, buflim - beg);
426 while (beg > buf && beg[-1] != eol)
483 end = memchr (beg, eol, buflim - beg);
489 while (beg > buf && beg[-1] != eol)
899 char eol = eolbyte; local
967 if (beg > buf && beg[-1] != eol)
969 if (beg + len < buf + size && beg[len] != eol)
1152 if (mlen == 1 && *end == eol)
1160 end = memchr (beg + len, eol, (bu
[all...]
/freebsd-12-stable/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 {
432 eol : EOL label
[all...]
/freebsd-12-stable/contrib/unbound/contrib/
H A Dcreate_unbound_ad_servers.cmd23 for /F "eol=; tokens=*" %%a in (%work_dir%\yoyo_ad_servers) do (
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.cpp110 fatal_error("expected separator or eol");
/freebsd-12-stable/contrib/bmake/unit-tests/
H A Ddollar.mk23 # The trailing dollar in the '1 dollar literal eol' test case accesses
35 $T '1 dollar literal eol' ''$

Completed in 430 milliseconds

1234