| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/ |
| bios.h | 24 u8 patch; member in struct:nvkm_bios::__anon5203
|
| /src/sys/arch/sparc/stand/boot/ |
| prompatch.c | 42 * Each patch entry is processed by: 43 * printf(message); prom_interpret(patch); printf("\n"); 47 const char *patch; member in struct:patch_entry 306 prom_interpret(e->patch);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_linux_s390.cc | 125 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] == '-' &&
|
| sanitizer_linux_libcdep.cc | 169 int *patch) { 182 *patch = (*p == '.') ? internal_simple_strtoll(p + 1, &p, 10) : 0; 226 bool CmpLibcVersion(int major, int minor, int patch) { 240 return pa >= patch; 283 int patch; local 284 if (GetLibcVersion(&major, &minor, &patch) && major == 2) { 301 else if (minor == 11 || (minor == 12 && patch == 1))
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_linux_s390.cpp | 131 unsigned int major, minor, patch = 0; local 143 patch = internal_simple_strtoll(ptr+1, &ptr, 10); 145 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' && 161 if (minor == 2 && patch >= 79) 164 if (minor == 12 && patch >= 58) 166 if (minor == 10 && patch == 0 && ptr[0] == '-' && 182 if (minor == 1 && patch >= 21) 185 if (minor == 4 && patch >= 6) 187 if (minor == 4 && patch == 0 && ptr[0] == '-' &&
|
| sanitizer_linux_libcdep.cpp | 171 int *patch) { 184 *patch = (*p == '.') ? internal_simple_strtoll(p + 1, &p, 10) : 0; 202 int major, minor, patch; local 204 GetLibcVersion(&major, &minor, &patch) && major == 2 && minor >= 25; 230 int patch; local 231 if (GetLibcVersion(&major, &minor, &patch) && major == 2) { 248 else if (minor == 11 || (minor == 12 && patch == 1)) 272 int patch; 273 if (GetLibcVersion(&major, &minor, &patch) && major == 2) {
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_linux_s390.cpp | 125 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] == '-' &&
|
| sanitizer_linux_libcdep.cpp | 169 int *patch) { 182 *patch = (*p == '.') ? internal_simple_strtoll(p + 1, &p, 10) : 0; 200 int major, minor, patch; local 202 GetLibcVersion(&major, &minor, &patch) && major == 2 && minor >= 25; 226 int patch; local 227 if (GetLibcVersion(&major, &minor, &patch) && major == 2) { 244 else if (minor == 11 || (minor == 12 && patch == 1)) 266 int patch; 267 if (GetLibcVersion(&major, &minor, &patch) && major == 2) {
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| mail_version.h | 83 int patch; /* null */ member in struct:__anon23114
|
| compat_level.c | 20 /* 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, 226 long patch; local [all...] |
| /src/sys/dev/microcode/aic7xxx/ |
| aic79xx_seq.h | 981 static const struct patch { struct
|
| aic7xxx_seq.h | 1093 static const struct patch { struct
|
| aicasm.c | 70 typedef struct patch { struct 71 STAILQ_ENTRY(patch) links; 78 STAILQ_HEAD(patch_list, patch) patches; 85 static void emit_patch(scope_t *scope, int patch); 295 /* Patch up forward jump addresses */ 392 stop("Patch argument list not defined", 396 * Output patch information. Patch functions first. 422 "static const struct patch {\n" 472 * Emit the first patch for this scop [all...] |
| /src/crypto/external/apache2/openssl/dist/test/testutil/ |
| provider.c | 69 int major, minor, patch; member in struct:__anon767 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) 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) 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) 129 || (prov.minor == minor && prov.patch <= patch))) 174 int major, minor, patch, r; local [all...] |
| /src/crypto/external/bsd/openssl/dist/test/testutil/ |
| provider.c | 69 int major, minor, patch; member in struct:__anon1778 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) 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) 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) 129 || (prov.minor == minor && prov.patch <= patch))) 174 int major, minor, patch, r; local [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/back-mdb/ |
| init.c | 447 int major, minor, patch, ver; local 448 char *version = mdb_version( &major, &minor, &patch ); 460 ver = (major << 24) | (minor << 16) | patch;
|
| /src/sys/dev/ic/ |
| oplvar.h | 39 const struct opl_operators *patch; member in struct:opl_voice
|
| /src/external/gpl2/xcvs/dist/src/ |
| patch.c | 13 * Patch 15 * Create a Larry Wall format "patch" file between a previous release and the 20 __RCSID("$NetBSD: patch.c,v 1.7 2016/05/17 14:00:09 christos Exp $"); 60 "\t-s\tShort patch - one liner per file.\n", 73 patch (int argc, char **argv) function 259 err += do_module (db, argv[i], PATCH, "Patching", patch_proc, 478 /* For adds & removes with a short patch requested, we can print our 503 /* cvsacl patch */ 634 * reasonable file names that "patch" will understand, unless the 635 * user wanted a short patch. In that case, just output the shor [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ProfileData/ |
| InstrProfWriter.cpp | 39 uint64_t Pos; // Where to patch. 58 // \c patch can only be called when all data is written and flushed. 59 // For raw_string_ostream, the patch is done on the target string 61 void patch(PatchItem *P, int NItems) { function in class:llvm::ProfOStream 368 // Now do the final patch: 370 // Patch the Header.HashOffset field. 372 // Patch the summary data. 378 OS.patch(PatchItems, sizeof(PatchItems) / sizeof(*PatchItems));
|
| /src/external/mit/libuv/dist/src/unix/ |
| process.c | 444 unsigned patch; local 453 if (3 != sscanf_l(buf, NULL, "%u.%u.%u", &major, &minor, &patch))
|
| /src/external/public-domain/xz/dist/src/xz/ |
| list.c | 127 unsigned int patch = ver / 10U; local 128 ver -= patch * 10U; 133 major, minor, patch, stability);
|
| /src/sys/dev/usb/ |
| if_atureg.h | 370 uint8_t patch; member in struct:atu_fw
|
| /src/sys/sys/ |
| cdio.h | 212 u_char patch[4]; /* one for each channel */ member in struct:ioc_patch
|
| /src/external/gpl3/gdb/dist/gdb/ |
| amd-dbgapi-target.c | 2350 uint32_t major, minor, patch; local 2351 amd_dbgapi_get_version (&major, &minor, &patch); 2354 major, minor, patch, AMD_DBGAPI_VERSION_MAJOR,
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| amd-dbgapi-target.c | 2289 uint32_t major, minor, patch; local 2290 amd_dbgapi_get_version (&major, &minor, &patch); 2293 major, minor, patch, AMD_DBGAPI_VERSION_MAJOR,
|