| /src/external/bsd/libpcap/dist/pcap/ |
| compiler-tests.h | 77 * Check whether this is GCC major.minor or a later release, or some 84 #define PCAP_IS_AT_LEAST_GNUC_VERSION(major, minor) 0 87 #define PCAP_IS_AT_LEAST_GNUC_VERSION(major, minor) \ 88 (__GNUC__ > (major) || \ 89 (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))) 93 * Check whether this is Clang major.minor or a later release. 98 #define PCAP_IS_AT_LEAST_CLANG_VERSION(major, minor) 0 101 #define PCAP_IS_AT_LEAST_CLANG_VERSION(major, minor) \ 102 (__clang_major__ > (major) || \ 103 (__clang_major__ == (major) && __clang_minor__ >= (minor)) [all...] |
| /src/external/bsd/tcpdump/dist/ |
| compiler-tests.h | 77 * Check whether this is GCC major.minor or a later release, or some 84 #define ND_IS_AT_LEAST_GNUC_VERSION(major, minor) 0 87 #define ND_IS_AT_LEAST_GNUC_VERSION(major, minor) \ 88 (__GNUC__ > (major) || \ 89 (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))) 93 * Check whether this is Clang major.minor or a later release. 98 #define ND_IS_AT_LEAST_CLANG_VERSION(major, minor) 0 101 #define ND_IS_AT_LEAST_CLANG_VERSION(major, minor) \ 102 (__clang_major__ > (major) || \ 103 (__clang_major__ == (major) && __clang_minor__ >= (minor)) [all...] |
| /src/external/bsd/ntp/dist/ |
| packageinfo.sh | 18 # To move from dev -RC to new -stable and -dev major/minor version, set 19 # minor and/or major to the new version, repotype to match the new 53 # version=Major.Minor 55 # version=Protocol.Major.Minor 59 major=2 62 case "${proto}.${major}" in 64 version=${proto}.${major}.${minor} 66 *) version=${major}.${minor} 81 ### Point number, after "major.minor.", normally modified by script.
|
| /src/external/gpl3/gdb/dist/gdb/ |
| producer.h | 28 /* Returns nonzero if the given PRODUCER string is GCC and sets the MAJOR 31 extern int producer_is_gcc (const char *producer, int *major, int *minor); 33 /* Returns nonzero if the given PRODUCER string is GAS and sets the MAJOR 36 bool producer_is_gas (const char *producer, int *major, int *minor); 42 otherwise. Sets the MAJOR and MINOR versions when not NULL. */ 43 extern bool producer_is_icc (const char *producer, int *major, int *minor); 50 Sets MAJOR and MINOR accordingly, if not NULL. */ 51 extern bool producer_is_clang (const char *producer, int *major, int *minor);
|
| producer.c | 29 int major, minor; local 31 if (! producer_is_gcc (producer, &major, &minor)) 33 if (major < 4) 35 if (major > 4) 43 producer_is_gcc (const char *producer, int *major, int *minor) 51 if (major == NULL) 52 major = &maj; 73 if (sscanf (cs, "%d.%d", major, minor) == 2) 84 producer_is_gas (const char *producer, int *major, int *minor) 103 /* Ensure that major/minor are not nullptrs. * 125 int major, minor; local 210 int major = 0, minor = 0; local 221 int major = 0, minor = 0; local 233 int major = 0, minor = 0; local 244 int major = 0, minor = 0; local 255 int major = 0, minor = 0; local 264 int major = 0, minor = 0; local 271 int major = 0, minor = 0; local 279 int major = 0, minor = 0; local 287 int major = 0, minor = 0; local 295 int major = 0, minor = 0; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| producer.h | 28 /* Returns nonzero if the given PRODUCER string is GCC and sets the MAJOR 31 extern int producer_is_gcc (const char *producer, int *major, int *minor); 33 /* Returns nonzero if the given PRODUCER string is GAS and sets the MAJOR 36 bool producer_is_gas (const char *producer, int *major, int *minor); 42 otherwise. Sets the MAJOR and MINOR versions when not NULL. */ 43 extern bool producer_is_icc (const char *producer, int *major, int *minor); 50 Sets MAJOR and MINOR accordingly, if not NULL. */ 51 extern bool producer_is_clang (const char *producer, int *major, int *minor);
|
| producer.c | 29 int major, minor; local 31 if (! producer_is_gcc (producer, &major, &minor)) 33 if (major < 4) 35 if (major > 4) 43 producer_is_gcc (const char *producer, int *major, int *minor) 51 if (major == NULL) 52 major = &maj; 73 if (sscanf (cs, "%d.%d", major, minor) == 2) 84 producer_is_gas (const char *producer, int *major, int *minor) 103 /* Ensure that major/minor are not nullptrs. * 125 int major, minor; local 210 int major = 0, minor = 0; local 221 int major = 0, minor = 0; local 233 int major = 0, minor = 0; local 244 int major = 0, minor = 0; local 255 int major = 0, minor = 0; local 264 int major = 0, minor = 0; local 271 int major = 0, minor = 0; local 279 int major = 0, minor = 0; local 287 int major = 0, minor = 0; local 295 int major = 0, minor = 0; local [all...] |
| /src/external/ibm-public/postfix/dist/src/global/ |
| compat_level.h | 27 #define compat_level_from_major(major, msg_fn) \ 28 compat_level_from_major_minor((major), 0, (msg_fn)) 29 #define compat_level_from_major_minor(major, minor, msg_fn) \ 30 compat_level_from_numbers((major), (minor), 0, (msg_fn))
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_mac.h | 55 u16 major; member in struct:__sanitizer::VersionBase 58 VersionBase(u16 major, u16 minor) : major(major), minor(minor) {} 61 return major == other.major && minor == other.minor; 64 return major > other.major || 65 (major == other.major && minor >= other.minor) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_mac.h | 55 u16 major; member in struct:__sanitizer::VersionBase 58 VersionBase(u16 major, u16 minor) : major(major), minor(minor) {} 61 return major == other.major && minor == other.minor; 64 return major > other.major || 65 (major == other.major && minor >= other.minor) [all...] |
| /src/etc/etc.luna68k/ |
| MAKEDEV.conf | 12 ttya) major=7; minor=0 ;; 13 ttyb) major=7; minor=1 ;; 15 mkdev $i c $major $minor "" "" $u_uucp 26 major=40; minor=0; mode=0644 27 mkdev xp c $major $minor $mode 31 major=41; minor=0; mode=0644 32 mkdev lcd c $major $minor $mode
|
| /src/sys/arch/x68k/include/ |
| bootinfo.h | 44 /* major */ 49 #define X68K_MAKEBOOTDEV(major, unit, part) \ 50 MAKEBOOTDEV(major, 0, 0, unit, part) 56 * device major -> type (8bit) 65 /* major */ 75 #define X68K_MAKESCSIBOOTDEV(major, type_if, unit_if, scsi_id, lun, part) \ 76 MAKEBOOTDEV(major, type_if, unit_if, scsi_id, ((lun) << 4) | (part)) 105 #define X68K_BOOT_DEV_IS_SCSI(major) \ 106 ((major) == X68K_MAJOR_SD || \ 107 (major) == X68K_MAJOR_CD [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) 126 return prov.major < majo 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) 126 return prov.major < majo 174 int major, minor, patch, r; local [all...] |
| /src/external/public-domain/xz/dist/src/common/ |
| tuklib_common.h | 53 # define TUKLIB_GNUC_REQ(major, minor) \ 54 ((__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)) \ 55 || __GNUC__ > (major)) 57 # define TUKLIB_GNUC_REQ(major, minor) 0
|
| /src/sys/arch/atari/stand/tostools/aptck/ |
| aptck.h | 34 #define MAJOR(bus, target, lun) (((bus) << 3) + (target)) 36 #define LUN(major, minor) (minor) 37 #define TARGET(major, minor) ((major) & 0x0007) 38 #define BUS(major, minor) (((major) >> 3) & 0x1FFF) 39 #define BIOSDEV(major, minor) (((minor) == 0) ? ((major) + 2) : 0) 56 u_int major; /* XHDI major number * member in struct:__anon1223 [all...] |
| /src/sys/arch/atari/stand/tostools/libtos/ |
| diskio.h | 34 #define MAJOR(bus, target, lun) (((bus) << 3) + (target)) 36 #define LUN(major, minor) (minor) 37 #define TARGET(major, minor) ((major) & 0x0007) 38 #define BUS(major, minor) (((major) >> 3) & 0x1FFF) 39 #define BIOSDEV(major, minor) (((minor) == 0) ? ((major) + 2) : 0) 48 u_int major; /* XHDI major number * member in struct:__anon1232 [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| intel_csr.h | 13 #define CSR_VERSION(major, minor) ((major) << 16 | (minor))
|
| /src/external/gpl3/gcc/dist/gcc/ |
| genversion.cc | 34 unsigned long major; local 40 major = strtoul (ptr, &ptr, 10); 55 v[0] = (major / 10) + 'A'; 56 v[1] = (major % 10) + '0'; 67 printf ("#define GCC_major_version %lu\n\n", major);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| genversion.cc | 34 unsigned long major; local 40 major = strtoul (ptr, &ptr, 10); 55 v[0] = (major / 10) + 'A'; 56 v[1] = (major % 10) + '0'; 67 printf ("#define GCC_major_version %lu\n\n", major);
|
| /src/external/bsd/nsd/dist/simdzone/include/zone/ |
| attributes.h | 13 # define zone_has_gnuc(major, minor) \ 14 ((__GNUC__ > major) || (__GNUC__ == major && __GNUC_MINOR__ >= minor)) 16 # define zone_has_gnuc(major, minor) (0)
|
| /src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/ |
| win32os.h | 37 * Major Version of the O/S. 49 * Major Version of the Service Pack for O/S. 59 isc_win32os_versioncheck(unsigned int major, unsigned int minor,
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| VersionTuple.cpp | 10 // the form major[.minor[.subminor]]. 64 unsigned major = 0, minor = 0, micro = 0, build = 0; local 66 // Parse the major version, [0-9]+ 67 if (parseInt(input, major)) 71 *this = VersionTuple(major); 83 *this = VersionTuple(major, minor); 95 *this = VersionTuple(major, minor, micro); 110 *this = VersionTuple(major, minor, micro, build);
|
| /src/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/ |
| gss_mo.c | 123 OM_uint32 major, minor; local 133 major = gss_create_empty_oid_set(&minor, options); 134 if (major != GSS_S_COMPLETE) 242 OM_uint32 major; local 251 major = gmc->gmc_inquire_saslname_for_mech(minor, 257 major = GSS_S_UNAVAILABLE; 260 return major; 284 OM_uint32 major; local 296 major = mo_value(desired_mech, GSS_C_MA_SASL_MECH_NAME, sasl_mech_name); 297 if (major == GSS_S_COMPLETE) 351 OM_uint32 major, junk; local 458 OM_uint32 major; local 521 OM_uint32 major, junk; local 593 OM_uint32 major; local [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/gssapi/ |
| test_add_store_cred.c | 62 status_type == GSS_C_GSS_CODE ? "major" : "minor", 69 status_type == GSS_C_GSS_CODE ? "major" : "minor", 80 print_gss_errs(OM_uint32 major, OM_uint32 minor, gss_OID mech) 82 print_gss_err(major, GSS_C_GSS_CODE, GSS_C_NO_OID); 83 print_gss_err(major, GSS_C_MECH_CODE, mech); 87 gss_err(int exitval, OM_uint32 major, OM_uint32 minor, gss_OID mech, 95 print_gss_errs(major, minor, mech); 118 OM_uint32 major, minor; local 152 major = gss_add_cred(&minor, GSS_C_NO_CREDENTIAL, GSS_C_NO_NAME, 155 if (major != GSS_S_COMPLETE [all...] |