Searched refs:minor (Results 1 - 25 of 242) sorted by relevance

12345678910

/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dbdb_compat.c28 int major, minor; local
30 db_version(&major, &minor, NULL);
31 if (major != DB_VERSION_MAJOR || minor != DB_VERSION_MINOR)
/freebsd-10.0-release/contrib/ntp/
H A Dpackageinfo.sh3 # odd minor numbers are for -dev, even minor numbers are for -stable
6 minor=4
7 version=${proto}.${major}.${minor}
/freebsd-10.0-release/sys/dev/vxge/
H A Dvxgell-version.h41 #define VXGE_FW_VERSION(major, minor, build) \
42 ((major << 16) + (minor << 8) + build)
44 #define VXGE_FW_MAJ_MIN_VERSION(major, minor) \
45 ((major << 16) + (minor << 8))
/freebsd-10.0-release/contrib/libyaml/tests/
H A Dtest-version.c15 int minor = -1; local
19 yaml_get_version(&major, &minor, &patch);
20 sprintf(buf, "%d.%d.%d", major, minor, patch);
/freebsd-10.0-release/contrib/subversion/subversion/include/private/
H A Dsvn_dep_compat.h42 * @param minor The minor version component of the version checked
50 #define APR_VERSION_AT_LEAST(major,minor,patch) \
52 || ((major) == APR_MAJOR_VERSION && (minor) < APR_MINOR_VERSION) \
53 || ((major) == APR_MAJOR_VERSION && (minor) == APR_MINOR_VERSION && \
122 * @param minor The minor version component of the version checked
130 #define SERF_VERSION_AT_LEAST(major,minor,patch) \
132 || ((major) == SERF_MAJOR_VERSION && (minor) < SERF_MINOR_VERSION) \
133 || ((major) == SERF_MAJOR_VERSION && (minor)
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dgcov-iov.c36 unsigned long minor = 0; local
50 minor = strtoul (ptr + 1, 0, 10);
57 v[1] = (minor / 10) + '0';
58 v[2] = (minor % 10) + '0';
66 argv[1], major, minor, argv[2], phase);
/freebsd-10.0-release/contrib/xz/src/common/
H A Dtuklib_common.h53 # define TUKLIB_GNUC_REQ(major, minor) \
54 ((__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)) \
57 # define TUKLIB_GNUC_REQ(major, minor) 0
/freebsd-10.0-release/crypto/heimdal/appl/ftp/ftpd/
H A Dgss_userok.c61 OM_uint32 major, minor; local
65 major = gss_store_cred(&minor, data->delegated_cred_handle,
73 gss_release_cred(&minor, &data->delegated_cred_handle);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzfs_onexit.h55 extern int zfs_onexit_add_cb(minor_t minor, void (*func)(void *), void *data,
57 extern int zfs_onexit_del_cb(minor_t minor, uint64_t action_handle,
59 extern int zfs_onexit_cb_data(minor_t minor, uint64_t action_handle,
/freebsd-10.0-release/contrib/apr/include/
H A Dapr_version.h55 /** minor version
79 * @param minor The minor version component of the version checked
86 #define APR_VERSION_AT_LEAST(major,minor,patch) \
88 || ((major) == APR_MAJOR_VERSION && (minor) < APR_MINOR_VERSION) \
89 || ((major) == APR_MAJOR_VERSION && (minor) == APR_MINOR_VERSION && (patch) <= APR_PATCH_VERSION))
142 int minor; /**< minor number */ member in struct:__anon117
/freebsd-10.0-release/sys/ofed/include/linux/
H A Dkdev_t.h33 #define MINOR(dev) minor((dev))
/freebsd-10.0-release/release/picobsd/tinyware/aps/
H A Dmain.c50 char *major, *minor; local
77 minor=strtok(NULL,sep1);
78 if(strcmp(minor,"-1")==0) {
79 minor="?";
87 minor="-";
91 if((strcmp(major,"v")==0) && (strcmp(minor,"255")==0)) {
93 minor="-";
95 sprintf(con,"%s%s",major,minor);
/freebsd-10.0-release/sys/compat/netbsd/
H A Ddvcfg.h49 #define DVCFG_MKCFG(major, minor) ((((u_int)(major)) << 16) | ((minor) & 0xffff))
/freebsd-10.0-release/contrib/apr/misc/unix/
H A Dversion.c23 pvsn->minor = APR_MINOR_VERSION;
/freebsd-10.0-release/contrib/apr-util/misc/
H A Dapu_version.c25 pvsn->minor = APU_MINOR_VERSION;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DVersionTuple.cpp11 // the form major[.minor[.subminor]].
58 unsigned major = 0, minor = 0, micro = 0; local
68 // If we're not done, parse the minor version, \.[0-9]+
71 if (parseInt(input, minor)) return true;
74 *this = VersionTuple(major, minor);
86 *this = VersionTuple(major, minor, micro);
/freebsd-10.0-release/contrib/xz/src/liblzma/api/lzma/
H A Dversion.h46 * - yyy = minor
76 #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)
/freebsd-10.0-release/sys/mips/atheros/
H A Dar71xx_setup.c80 uint32_t minor; local
88 minor = id & AR71XX_REV_ID_MINOR_MASK;
92 switch (minor) {
132 minor = id & AR91XX_REV_ID_MINOR_MASK;
136 switch (minor) {
149 minor = 0;
156 minor = 1;
164 minor = 0;
172 minor = 0;
180 minor
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dversion.c56 and have the same major and minor version. */
58 && my_version->minor == lib_version->minor
64 && my_version->minor <= lib_version->minor);
72 && my_version->minor == lib_version->minor
94 lib_version->major, lib_version->minor,
96 my_version->major, my_version->minor,
217 /* Parse the major and minor integer
260 svn_version__at_least(svn_version_t *version, int major, int minor, int patch) argument
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_onexit.c44 * clone-open, generating a unique minor number. The process then passes
64 * by calling zfs_onexit_cb_data() with the device minor number and
105 zfs_onexit_minor_to_state(minor_t minor, zfs_onexit_t **zo) argument
107 *zo = zfsdev_get_soft_state(minor, ZSST_CTLDEV);
115 * Consumers might need to operate by minor number instead of fd, since
118 * using the minor number.
154 zfs_onexit_add_cb(minor_t minor, void (*func)(void *), void *data, argument
161 error = zfs_onexit_minor_to_state(minor, &zo);
201 zfs_onexit_del_cb(minor_t minor, uint64_t action_handle, boolean_t fire) argument
207 error = zfs_onexit_minor_to_state(minor,
233 zfs_onexit_cb_data(minor_t minor, uint64_t action_handle, void **data) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/spnego/
H A Dinit_sec_context.c196 OM_uint32 sub, minor; local
215 sub = _gss_spnego_alloc_sec_context(&minor, &context);
217 *minor_status = minor;
226 sub = gss_import_name(&minor, &name->value, &name->type, &ctx->target_name);
228 *minor_status = minor;
229 _gss_spnego_internal_delete_sec_context(&minor, &context, GSS_C_NO_BUFFER);
233 sub = _gss_spnego_indicate_mechtypelist(&minor,
241 *minor_status = minor;
242 _gss_spnego_internal_delete_sec_context(&minor, &context, GSS_C_NO_BUFFER);
254 sub = gss_init_sec_context(&minor,
391 OM_uint32 ret, minor; local
[all...]
/freebsd-10.0-release/lib/libc/iconv/
H A Dcitrus_module.c122 #undef minor macro
182 int i, len, major, minor, ndewey, n_search_dirs; local
186 minor = *minorp;
220 if (major == -1 && minor == -1)
222 else if (major != -1 && minor == -1) {
225 } else if (major != -1 && minor != -1) {
227 if (n == 1 || tmp[1] >= minor)
/freebsd-10.0-release/contrib/binutils/opcodes/
H A Darc-ext.c34 arcExtMap_instName(int opcode, int minor, int *flags) argument
39 if (minor < 0x09 || minor == 0x3f)
42 opcode = 0x1f - 0x10 + minor - 0x09 + 1;
162 p[3] = minor opcode (if opcode == 3)
181 char minor = p[3]; local
187 opcode = 0x1f - 0x10 + minor - 0x09 + 1;
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/
H A Dgsstool.c139 OM_uint32 major, minor; local
154 major = gss_display_mech_attr(&minor, &set->elements[n], &name, &desc, NULL);
173 gss_release_buffer(&minor, &value);
176 gss_release_buffer(&minor, &name);
177 gss_release_buffer(&minor, &desc);
191 OM_uint32 major, minor; local
199 major = gss_inquire_attrs_for_mech(&minor, mech, &mech_attr, &known_mech_attrs);
211 gss_release_oid_set(&minor, &mech_attr);
212 gss_release_oid_set(&minor, &known_mech_attrs);
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/krb5/
H A Dtest_cfx.c60 OM_uint32 minor; local
65 ret = _gssapi_wrap_size_cfx(&minor,
103 OM_uint32 minor; local
107 ret = _gssapi_wrap_size_cfx(&minor,

Completed in 183 milliseconds

12345678910