Searched refs:patch (Results 1 - 25 of 123) sorted by relevance

12345

/netbsd-current/usr.bin/patch/
H A DMakefile3 # $DragonFly: src/usr.bin/patch/Makefile,v 1.8 2008/08/10 23:50:12 joerg Exp $
5 PROG= patch
6 SRCS= patch.c pch.c inp.c util.c backupfile.c mkpath.c
/netbsd-current/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}
[all...]
/netbsd-current/external/gpl3/gcc/dist/contrib/reghunt/examples/
H A Dreg-watch.awk1 /result for low patch/ {
2 sub(".*low patch ","")
7 /result for high patch/ {
8 sub(".*high patch ","")
/netbsd-current/external/gpl3/gcc.old/dist/contrib/reghunt/examples/
H A Dreg-watch.awk1 /result for low patch/ {
2 sub(".*low patch ","")
7 /result for high patch/ {
8 sub(".*high patch ","")
/netbsd-current/tests/usr.bin/patch/
H A DMakefile5 TESTSDIR= ${TESTSBASE}/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
43 atf_fail "Failed to patch long lines"
85 cat << EOF > test_diff.patch
93 patch -V simple to_patch < test_diff.patch
110 cat << EOF > test_diff.patch
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/test/testutil/
H A Dprovider.c69 int major, minor, patch; member in struct:__anon98
89 || sscanf(vs, "%d.%d.%d", &vers->major, &vers->minor, &vers->patch) != 3)
99 int fips_provider_version_eq(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
106 return major == prov.major && minor == prov.minor && patch == prov.patch;
109 int fips_provider_version_ne(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
116 return major != prov.major || minor != prov.minor || patch != prov.patch;
119 int fips_provider_version_le(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
129 || (prov.minor == minor && prov.patch <
132 fips_provider_version_lt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
145 fips_provider_version_gt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
158 fips_provider_version_ge(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
174 int major, minor, patch, r; local
[all...]
/netbsd-current/usr.bin/make/unit-tests/
H A Ddir.exp10 Expanding "{pre-,}{patch,configure}"... Expanding "pre-{patch,configure}"... pre-patch pre-configure
11 Expanding "{patch,configure}"... pre-patch pre-configure patch configure
12 pre-patch pre-configure patch configure
35 : pre-patch
37 : patch
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_linux_s390.cc125 unsigned int major, minor, patch = 0; local
137 patch = internal_simple_strtoll(ptr+1, &ptr, 10);
139 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' &&
155 if (minor == 2 && patch >= 79)
158 if (minor == 12 && patch >= 58)
160 if (minor == 10 && patch == 0 && ptr[0] == '-' &&
176 if (minor == 1 && patch >= 21)
179 if (minor == 4 && patch >= 6)
181 if (minor == 4 && patch == 0 && ptr[0] == '-' &&
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_linux_s390.cc123 unsigned int major, minor, patch = 0; local
135 patch = internal_simple_strtoll(ptr+1, &ptr, 10);
137 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' &&
153 if (minor == 2 && patch >= 79)
156 if (minor == 12 && patch >= 58)
158 if (minor == 10 && patch == 0 && ptr[0] == '-' &&
174 if (minor == 1 && patch >= 21)
177 if (minor == 4 && patch >= 6)
179 if (minor == 4 && patch == 0 && ptr[0] == '-' &&
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_linux_s390.cpp125 unsigned int major, minor, patch = 0; local
137 patch = internal_simple_strtoll(ptr+1, &ptr, 10);
139 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' &&
155 if (minor == 2 && patch >= 79)
158 if (minor == 12 && patch >= 58)
160 if (minor == 10 && patch == 0 && ptr[0] == '-' &&
176 if (minor == 1 && patch >= 21)
179 if (minor == 4 && patch >= 6)
181 if (minor == 4 && patch == 0 && ptr[0] == '-' &&
/netbsd-current/external/public-domain/xz/dist/src/liblzma/api/lzma/
H A Dversion.h76 #define LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit) \
77 #major "." #minor "." #patch stability commit
79 #define LZMA_VERSION_STRING_C(major, minor, patch, stability, commit) \
80 LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit)
/netbsd-current/external/bsd/unbound/dist/contrib/ios/
H A Dinstall_openssl.sh25 # OpenSSL 1.1.1d patch. OK to remove once OpenSSL version is bumped.
28 if ! patch -u -p0 < ../contrib/ios/openssl.patch; then
29 echo "Failed to patch OpenSSL"
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DDemangleConfig.h36 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) \
38 ((maj) << 20) + ((min) << 10) + (patch))
40 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) \
43 #define DEMANGLE_GNUC_PREREQ(maj, min, patch) 0
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dcompat_level.c20 /* long patch,
37 /* "major.minor.patch" but will also accept the shorter forms
44 /* bits) or more, while the minor and patch numbers can range
79 /* The patch and minor fields range from 0..1023 (10 bits) while
116 * version, and patch level.
158 long major, minor, patch, res = 0; local
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, argument
226 long patch; local
[all...]
H A Dmail_version.c15 /* int patch; /* patchlevel or -1 */
139 mp->patch = -1;
140 else if ((mp->patch = mail_version_int(patch_field)) < 0)
222 if (mp->patch < 0)
225 vstream_printf("patch: %d\n", mp->patch);
H A Dmail_version.h83 int patch; /* null */ member in struct:__anon15
/netbsd-current/external/mit/xorg/bin/xedit/modules/progmodes/
H A DMakefile8 FILES= c.lsp html.lsp imake.lsp lisp.lsp make.lsp man.lsp patch.lsp \
/netbsd-current/tools/binstall/
H A Dmkmanifest6 *instal*|*patch*|*update*|*setup*)
/netbsd-current/external/mit/libuv/dist/docs/src/
H A Dconf.py29 patch = int(m.group(1))
34 return '%d.%d.%d%s' % (major, minor, patch, '-%s' % suffix if not is_release else '')
/netbsd-current/external/bsd/libfido2/dist/fuzz/
H A Dbuild-coverage20 (cd "${LIBCBOR}" && patch -N -l -s -p0 < "${LIBFIDO2}/fuzz/README") || true
/netbsd-current/external/gpl2/xcvs/dist/contrib/
H A DMakefile.am46 rcs-5.7-commitid.patch
68 rcs-5.7-commitid.patch \
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/
H A Dbios.h24 u8 patch; member in struct:nvkm_bios::__anon953
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dcompare-sections.exp102 # address in a read-only section, patch it, and check that
140 set patch [expr 255 - $orig]
145 gdb_test_multiple "print /u *(unsigned char *) $ro_address = $patch" "$test" {
155 if { $written != $patch } {
156 unsupported "can't patch read-only section"
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dcompare-sections.exp101 # address in a read-only section, patch it, and check that
139 set patch [expr 255 - $orig]
144 gdb_test_multiple "print /u *(unsigned char *) $ro_address = $patch" "$test" {
154 if { $written != $patch } {
155 unsupported "can't patch read-only section"

Completed in 174 milliseconds

12345