Searched refs:major (Results 1 - 25 of 453) sorted by relevance

1234567891011>>

/macosx-10.9.5/SmartcardCCID-55005/ccid/ccid/src/
H A Dconvert_version.pl26 my ($major, $minor, $patch) = split /\./, $ARGV[0];
31 printf "0x%02X%02X%04X\n", $major, $minor, $patch;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/build/
H A Dget-version.sh6 # where CMD is one of: all, major, libtool
10 # get-version.sh major returns just the major version number
16 echo " where CMD is one of: all, major, libtool"
23 major="`sed -n $major_sed $2`"
28 echo ${major}.${minor}.${patch}
29 elif test "$1" = "major"; then
30 echo ${major}
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/build/
H A Dget-version.sh6 # where CMD is one of: all, major, libtool
10 # get-version.sh major returns just the major version number
16 echo " where CMD is one of: all, major, libtool"
23 major="`sed -n $major_sed $2`"
28 echo ${major}.${minor}.${patch}
29 elif test "$1" = "major"; then
30 echo ${major}
/macosx-10.9.5/apr-30/apr/apr/build/
H A Dget-version.sh6 # where CMD is one of: all, major, libtool
10 # get-version.sh major returns just the major version number
16 echo " where CMD is one of: all, major, libtool"
23 major="`sed -n $major_sed $2`"
28 echo ${major}.${minor}.${patch}
29 elif test "$1" = "major"; then
30 echo ${major}
/macosx-10.9.5/apr-30/apr-util/apr-util/build/
H A Dget-version.sh6 # where CMD is one of: all, major, libtool
10 # get-version.sh major returns just the major version number
16 echo " where CMD is one of: all, major, libtool"
23 major="`sed -n $major_sed $2`"
28 echo ${major}.${minor}.${patch}
29 elif test "$1" = "major"; then
30 echo ${major}
/macosx-10.9.5/apache-786.1/httpd/include/
H A Dap_mmn.h33 * a change in the major version.
177 * @param major The major module magic number
179 * @deffunc AP_MODULE_MAGIC_AT_LEAST(int major, int minor)
181 #define AP_MODULE_MAGIC_AT_LEAST(major,minor) \
182 ((major) < MODULE_MAGIC_NUMBER_MAJOR \
183 || ((major) == MODULE_MAGIC_NUMBER_MAJOR \
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dget-version.sh22 # where CMD is one of: all, major, libtool
26 # get-version.sh major returns just the major version number
32 echo " where CMD is one of: all, major"
40 major="`sed -n $major_sed $2`"
46 echo ${major}.${minor}.${patch}
47 elif test "$1" = "major"; then
48 echo ${major}
/macosx-10.9.5/bash-92/bash-3.2/examples/scripts.noah/
H A Dbash_version.bash1 # bash_version.bash --- get major and minor components of bash version number
13 # Usage: bash_version {major|minor}
15 # Echo the major or minor number of this version of bash on stdout, or
22 local major minor
25 major) echo "${BASH_VERSION/.*/}" ;;
26 minor) major="${BASH_VERSION/.*/}"
27 minor="${BASH_VERSION#${major}.}"
/macosx-10.9.5/ruby-104/ruby/lib/webrick/
H A Dhttpversion.rb19 # The major protocol version number
21 attr_accessor :major
41 @major, @minor = version.major, version.minor
44 @major, @minor = $1.to_i, $2.to_i
47 if @major.nil? || @minor.nil?
61 if (ret = @major <=> other.major) == 0
72 format("%d.%d", @major, @minor)
/macosx-10.9.5/cctools-845/libstuff/
H A Dmacosx_deployment_target.c67 uint32_t ten, major, minor; local
90 major = strtoul(q, &endp, 10);
91 if(major == 0)
104 value->major = major;
123 * x, y and z are unsigned numbers. Where x-4 is the Mac OS X major
127 major = strtoul(osversion, &endp, 10);
130 if(major <= 4)
132 major = major
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/psych/
H A Dpsych.c9 int major, minor, patch; local
12 yaml_get_version(&major, &minor, &patch);
14 list[0] = INT2NUM((long)major);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitVersion.h.in60 * @major: major version (e.g. 1 for version 1.2.5)
67 #define WEBKIT_CHECK_VERSION(major, minor, micro) \
68 (WEBKIT_MAJOR_VERSION > (major) || \
69 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \
70 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/
H A Dapr_version.h48 /** major version
51 * possible across a change in the major version.
77 * @param major The major version component of the version checked
86 #define APR_VERSION_AT_LEAST(major,minor,patch) \
87 (((major) < APR_MAJOR_VERSION) \
88 || ((major) == APR_MAJOR_VERSION && (minor) < APR_MINOR_VERSION) \
89 || ((major) == APR_MAJOR_VERSION && (minor) == APR_MINOR_VERSION && (patch) <= APR_PATCH_VERSION))
141 int major; /**< major numbe member in struct:__anon6143
[all...]
/macosx-10.9.5/apr-30/apr/apr/include/
H A Dapr_version.h45 /** major version
48 * possible across a change in the major version.
74 * @param major The major version component of the version checked
83 #define APR_VERSION_AT_LEAST(major,minor,patch) \
84 (((major) < APR_MAJOR_VERSION) \
85 || ((major) == APR_MAJOR_VERSION && (minor) < APR_MINOR_VERSION) \
86 || ((major) == APR_MAJOR_VERSION && (minor) == APR_MINOR_VERSION && (patch) <= APR_PATCH_VERSION))
136 int major; /**< major numbe member in struct:__anon6263
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DSystemVersionMac.mm53 int major = callGestalt(gestaltSystemVersionMajor);
54 ASSERT(major);
59 return [[NSString alloc] initWithFormat:@"%d.%d.%d", major, minor, bugFix];
61 return [[NSString alloc] initWithFormat:@"%d.%d", major, minor];
62 return [[NSString alloc] initWithFormat:@"%d", major];
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitversion.h.in39 #define WEBKIT_CHECK_VERSION(major, minor, micro) \
40 (WEBKIT_MAJOR_VERSION > (major) || \
41 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \
42 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \
55 webkit_check_version (guint major, guint minor, guint micro);
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftpd/
H A Dgss_userok.c61 OM_uint32 major, minor; local
65 major = gss_store_cred(&minor, data->delegated_cred_handle,
68 if (GSS_ERROR(major))
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/include/isc/
H A Dwin32os.h57 isc_win32os_versioncheck(unsigned int major, unsigned int minor,
/macosx-10.9.5/cctools-845/include/stuff/
H A Dmacosx_deployment_target.h26 uint32_t major; /* major version */ member in struct:macosx_deployment_target
/macosx-10.9.5/ntp-88/lib/isc/win32/include/isc/
H A Dwin32os.h57 isc_win32os_versioncheck(unsigned int major, unsigned int minor,
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebkitglobal.h27 #define QTWEBKIT_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|(patch))
/macosx-10.9.5/xnu-2422.115.4/SETUP/
H A Dnewvers11 # newvers.sh copyright major minor variant
14 major="$1"; minor="$2"; variant="$3"
15 v="${major}.${minor}" d=`pwd` h="rcbuilder" t=`date` w=`whoami`
22 /bin/echo "int ${COMPONENT}_version_major = ${major};" ;
26 /bin/echo "char ${COMPONENT}_osrelease[] = \"${major}.${minor}\";" ;
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/mech/
H A Dgss_mo.c173 OM_uint32 major, minor; local
183 major = gss_create_empty_oid_set(&minor, options);
184 if (major != GSS_S_COMPLETE)
291 OM_uint32 major; local
300 major = gmc->gmc_inquire_saslname_for_mech(minor,
306 major = GSS_S_UNAVAILABLE;
309 return major;
333 OM_uint32 major; local
345 major = mo_value(desired_mech, GSS_C_MA_SASL_MECH_NAME, sasl_mech_name);
346 if (major
400 OM_uint32 major, junk; local
507 OM_uint32 major; local
570 OM_uint32 major, junk; local
642 OM_uint32 major; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/nssov/nss-pam-ldapd/
H A Dattrs.h26 #define GCC_VERSION(major,minor) \
27 ((__GNUC__ > (major)) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/
H A Dwin32os.c77 isc_win32os_versioncheck(unsigned int major, unsigned int minor, argument
82 if (major < isc_win32os_majorversion())
84 if (major > isc_win32os_majorversion())

Completed in 404 milliseconds

1234567891011>>