Home
last modified time | relevance | path

Searched refs:patch (Results 1 – 25 of 1040) sorted by relevance

12345678910>>...42

/netbsd-src/crypto/external/bsd/openssl/dist/test/testutil/
H A Dprovider.c69 int major, minor, patch; member
89 || sscanf(vs, "%d.%d.%d", &vers->major, &vers->minor, &vers->patch) != 3) in fips_provider_version()
99 int fips_provider_version_eq(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_eq() argument
106 return major == prov.major && minor == prov.minor && patch == prov.patch; in fips_provider_version_eq()
109 int fips_provider_version_ne(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_ne() argument
116 return major != prov.major || minor != prov.minor || patch != prov.patch; in fips_provider_version_ne()
119 int fips_provider_version_le(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_le() argument
129 || (prov.minor == minor && prov.patch <= patch))); in fips_provider_version_le()
132 int fips_provider_version_lt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_lt() argument
142 || (prov.minor == minor && prov.patch < patch))); in fips_provider_version_lt()
[all …]
/netbsd-src/tests/usr.bin/patch/
H A Dt_patch.sh32 cat << EOF > longlines.patch
37 printf -- "-%$1s\n" | tr " " "a" >> longlines.patch 2>/dev/null
38 printf -- "+%$1s" | tr " " "b" >> longlines.patch 2>/dev/null
40 patch longlines < longlines.patch
85 cat << EOF > test_diff.patch
93 patch -V simple to_patch < test_diff.patch
110 cat << EOF > test_diff.patch
119 patch -V none to_patch < test_diff.patch
125 VERSION_CONTROL=existing patch -V none to_patch \
126 < test_diff.patch
[all …]
/netbsd-src/external/bsd/openldap/dist/doc/devel/variadic_debug/
H A Dscript.sh28 patch="$1"
32 while ! cmp "$patch" "${patch}.new" 2>/dev/null; do
33 if [ -e "${patch}.new" ]; then
34 mv -- "${patch}.new" "$patch"
36 sed "${SED_TRANSFORMATIONS[@]}" -- "$patch" >"${patch}.new"
38 rediff "$patch" >"${patch}.new"
39 mv -- "${patch}.new" "$patch"
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DCodeReview.rst31 likely-community-consensus requirements (as apply to all patch approvals) can
33 uncertainty, a patch should be reviewed prior to being committed.
35 Please note that the developer responsible for a patch is also
47 the patch to be :ref:`reverted <revert_policy>`.
53 the patch promptly. Developers often disagree, and erring on the side of the
55 code in the tree. This does not indicate any fault from the patch author,
57 Reverting a patch ensures that design discussions can happen without blocking
58 other development; it's entirely possible the patch will end up being reapplied
61 Before being recommitted, the patch generally should undergo further review.
74 original change was committed, it may be better to create a new patch to
[all …]
H A DPhabricator.rst78 to upload your patch):
80 * ``git show HEAD -U999999 > mypatch.patch``
81 * ``git diff -U999999 @{u} > mypatch.patch``
82 * ``git diff HEAD~1 -U999999 > mypatch.patch``
84 Before uploading your patch, please make sure it is formatted properly, as
87 To upload a new patch:
91 * Paste the text diff or browse to the patch file. Click *Create Diff*.
103 To submit an updated patch:
107 * Paste the updated diff or browse to the updated patch file. Click *Create Diff*.
117 or llvm-commits, and if the subject line suggests the patch is something they
[all …]
H A DContributing.rst55 Once you have a patch ready, it is time to submit it. The patch should:
58 …e `clang-format-diff.py`_ or `git-clang-format`_ tools to automatically format your patch properly.
64 Before sending a patch for review, please also try to ensure it is
91 To get a patch accepted, it has to be reviewed by the LLVM community. This can
96 To make sure the right people see your patch, please select suitable reviewers
97 and add them to your patch when requesting a review. Suitable reviewers are the
99 patch touches. If you are using Phabricator, add them to the `Reviewers` field
106 updated version of your patch. This cycle continues until all requests and comments
107 have been addressed and a reviewer accepts the patch with a `Looks good to me` or `LGTM`.
112 If you have received no comments on your patch for a week, you can request a
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_linux_s390.cc125 unsigned int major, minor, patch = 0; in FixedCVE_2016_2143() local
137 patch = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
139 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' && in FixedCVE_2016_2143()
155 if (minor == 2 && patch >= 79) in FixedCVE_2016_2143()
158 if (minor == 12 && patch >= 58) in FixedCVE_2016_2143()
160 if (minor == 10 && patch == 0 && ptr[0] == '-' && in FixedCVE_2016_2143()
176 if (minor == 1 && patch >= 21) in FixedCVE_2016_2143()
179 if (minor == 4 && patch >= 6) in FixedCVE_2016_2143()
181 if (minor == 4 && patch == 0 && ptr[0] == '-' && in FixedCVE_2016_2143()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_linux_s390.cpp125 unsigned int major, minor, patch = 0; in FixedCVE_2016_2143() local
137 patch = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
139 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' && in FixedCVE_2016_2143()
155 if (minor == 2 && patch >= 79) in FixedCVE_2016_2143()
158 if (minor == 12 && patch >= 58) in FixedCVE_2016_2143()
160 if (minor == 10 && patch == 0 && ptr[0] == '-' && in FixedCVE_2016_2143()
176 if (minor == 1 && patch >= 21) in FixedCVE_2016_2143()
179 if (minor == 4 && patch >= 6) in FixedCVE_2016_2143()
181 if (minor == 4 && patch == 0 && ptr[0] == '-' && in FixedCVE_2016_2143()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_linux_s390.cc123 unsigned int major, minor, patch = 0; in FixedCVE_2016_2143() local
135 patch = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
137 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' && in FixedCVE_2016_2143()
153 if (minor == 2 && patch >= 79) in FixedCVE_2016_2143()
156 if (minor == 12 && patch >= 58) in FixedCVE_2016_2143()
158 if (minor == 10 && patch == 0 && ptr[0] == '-' && in FixedCVE_2016_2143()
174 if (minor == 1 && patch >= 21) in FixedCVE_2016_2143()
177 if (minor == 4 && patch >= 6) in FixedCVE_2016_2143()
179 if (minor == 4 && patch == 0 && ptr[0] == '-' && in FixedCVE_2016_2143()
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dcompat_level.c158 long major, minor, patch, res = 0; variable
177 patch = sane_strtol(start, &remainder, 10);
179 && GOOD_PATCH(patch)) {
180 return (res | ENCODE_PATCH(patch));
190 long compat_level_from_numbers(long major, long minor, long patch,
206 if (!GOOD_PATCH(patch)) {
207 msg_fn("%s: bad patch level: %ld", myname, patch);
214 return (ENCODE_MAJOR(major) | ENCODE_MINOR(minor) | ENCODE_PATCH(patch));
226 long patch; variable
258 patch = DECODE_PATCH(compat_level);
[all …]
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dxdelta6 0 string %XDELTA% XDelta binary patch file 0.14
7 0 string %XDZ000% XDelta binary patch file 0.18
8 0 string %XDZ001% XDelta binary patch file 0.20
9 0 string %XDZ002% XDelta binary patch file 1.0
10 0 string %XDZ003% XDelta binary patch file 1.0.4
11 0 string %XDZ004% XDelta binary patch file 1.1
/netbsd-src/external/gpl2/diffutils/dist/doc/
H A Ddiff.info5 showing the differences between files and the GNU `patch' command for
28 * patch: (diff)Invoking patch. Apply a patch to a file.
45 showing the differences between files and the GNU `patch' command for
79 * Merging with patch:: Using `patch' to change old files into new ones.
80 * Making Patches:: Tips for making and using patch distributions.
85 * Invoking patch:: Apply a diff file to an original.
109 called a "diff" or "patch". For files that are identical, `diff'
131 to the complete files. Given `diff' output, you can use the `patch'
132 program to update, or "patch", a copy of the file. If you think of
134 difference, you can think of `patch' as adding the difference to one
[all …]
H A Ddiff.texi16 differences between files and the @sc{gnu} @command{patch} command for
44 * patch: (diff)Invoking patch. Apply a patch to a file.
55 @subtitle for Diffutils @value{VERSION} and @code{patch} 2.5.4
88 * Merging with patch:: Using @command{patch} to change old files into new ones.
89 * Making Patches:: Tips for making and using patch distributions.
94 * Invoking patch:: Apply a diff file to an original.
106 @cindex overview of @command{diff} and @command{patch}
116 often called a @dfn{diff} or @dfn{patch}. For files that are identical,
139 @command{patch} program to update, or @dfn{patch}, a copy of the file. If you
141 their difference, you can think of @command{patch} as adding the difference
[all …]
/netbsd-src/external/gpl2/xcvs/dist/acl/
H A DINSTALL6 - copy the patch file cvsacl-patch-1.2.5 under CVS source distribution
8 "cp cvsacl-patch-1.2.5 /path/to/cvs-1.11.22/"
11 - apply the patch.
12 "patch -p0 < cvsacl-patch-1.2.5
13 - if you are initializing the repository after applying patch, related
/netbsd-src/external/ibm-public/postfix/dist/
H A DIPv6-ChangeLog1 ChangeLog for Dean Strik's IPv6 patch for Postfix. The patch is based on
2 PLD's patch, which in turn seems to be based on KAME's. For more information:
31 Patch correction: The TLS+IPv6 patch for Postfix 2.1.0 missed
39 Patch fixes: Several code fixes to make the patch compile
63 will be part of a future patch. (Slightly modified) patch by
78 TLS/snapshot version: Update TLS patch to 0.8.18-20040122.
140 Update (TLS patches): Updated Lutz Jaenicke's TLS patch to
144 The TLS+IPv6 patch now contains the original TLS patch
152 patch. Reported by Wolfgang S. Rupprecht.
178 introduced in patch 1.16. The impact of these bugs could
[all …]
/netbsd-src/external/mit/isl/dist/doc/
H A DSubmittingPatches25 - use "git format-patch -M" to create the patch
26 - do not PGP sign your patch
27 - send a single patch per mail, e.g., using git-send-email(1)
28 - do not attach your patch, but read in the mail
30 leave the formatting of the patch alone.
40 - send the patch to the development mailing list
49 when creating the patch)
/netbsd-src/external/gpl3/gdb.old/dist/readline/
H A DREADME3 To send patches, follow the gdb patch submission instructions in
6 If you need to patch readline, please document the changes here.
10 upstream, and (2) merge the one small configure.ac patch that gdb
13 If your import removes the need for a local patch, please remember to
17 "git am". You can see the current patch level by looking at
/netbsd-src/external/gpl3/gdb/dist/readline/
H A DREADME3 To send patches, follow the gdb patch submission instructions in
6 If you need to patch readline, please document the changes here.
10 upstream, and (2) merge the one small configure.ac patch that gdb
13 If your import removes the need for a local patch, please remember to
17 "git am". You can see the current patch level by looking at
/netbsd-src/usr.bin/make/unit-tests/
H A Ddir.mk57 all: {pre-,}{patch,configure}
59 pre-patch patch pre-configure configure:
93 .PHONY: pre-patch patch pre-configure configure
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A DChangeLog-201162 d/patches/patch-gcc-4.2.x, d/patches/patch-gcc-4.3.x,
63 d/patches/patch-gcc-4.4.x, d/patches/patch-gcc-4.5.x,
64 d/patches/patch-gcc-4.6.x: Remove gdc patch to cgraph.c - fix codegen.
284 * d/lang-specs.h, d/patches/patch-apple-gcc-5465,
285 d/patches/patch-apple-gcc-5664, d/patches/patch-gcc-4.2.x,
286 d/patches/patch-gcc-4.3.x, d/patches/patch-gcc-4.4.x,
287 d/patches/patch-gcc-4.5.x, d/patches/patch-gcc-4.6.x: Issue #251 -
532 * d/patches/patch-gcc-4.6.x: Issue #218 - segmentation fault when
554 d/d-lang.cc, d/patches/patch-gcc-4.2.x, d/patches/patch-gcc-4.3.x,
555 d/patches/patch-gcc-4.4.x, d/patches/patch-gcc-4.5.x,
[all …]
H A DChangeLog-200835 * patches/patch-gcc-4.0.x, patches/patch-gcc-4.1.x: Fix infinite
36 loop bug in patch.
37 * patches/patch-apple-gcc-4.0.x: Ditto.
97 * Move patch-* to patches/
246 * patch-build_gcc-5465: Correctly build driver-driver
277 * patch-build_gcc-4.0, patch-build_gcc-5465: Support D 2.0
308 * patch-apple-gcc-4.0.x, patch-apple-gcc-5465: Include patch
324 * Rename patch-build_gcc-4.0 to patch-build_gcc-4.0.x
/netbsd-src/external/bsd/unbound/dist/contrib/
H A DREADME16 * unbound-host.nagios.patch: makes unbound-host return status that fits right
18 * patch_rsamd5_enable.diff: this patch enables RSAMD5 validation (otherwise
26 * aaaa-filter-iterator.patch: adds config option aaaa-filter: yes that
36 * redirect-bogus.patch: Return configured address for bogus A and AAAA answers,
38 * fastrpz.patch: fastrpz support from Farsight Security.
43 * unbound-fuzzme.patch: adds unbound-fuzzme program that parses a packet from
44 stdin. Used with fuzzers, patch from Jacob Hoffman-Andrews.
47 the contrib/unbound-fuzzme.patch. They are contributed by
50 to stop random floods. Apply with patch -p1 < contrib/drop-tld.diff and
/netbsd-src/external/public-domain/xz/dist/src/liblzma/api/lzma/
H A Dversion.h76 #define LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit) \ argument
77 #major "." #minor "." #patch stability commit
79 #define LZMA_VERSION_STRING_C(major, minor, patch, stability, commit) \ argument
80 LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit)
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DDemangleConfig.h36 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) \ argument
38 ((maj) << 20) + ((min) << 10) + (patch))
40 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) \ argument
43 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) 0 argument
/netbsd-src/external/mpl/dhcp/dist/
H A DCONTRIBUTING.md3 So you found a bug in ISC DHCP or plan to develop an extension and want to send us a patch? Great!
6 We do not require a contributors agreement. By submitting a patch or merge request to this project,
16 Here's are the steps in contributing a patch:
48 Before you start working on a patch or a new feature, it is a good idea to discuss it first with
94 patch, but the software is expected to run on many other architectures. .
139 Once you feel that your patch is ready, go to the DHCP project
152 your patch being ignored are really high. Anyway, here they are:
155 patch to it. Sending a patch has a number of disadvantages. First, if you don't specify the base
158 know if the patch is broken or maybe it was applied to incorrect base code. Another frequent
159 problem is that it may be possible that the patch didn't include any new files you have added.
[all …]

12345678910>>...42