Home
last modified time | relevance | path

Searched full:major (Results 1 – 25 of 1251) sorted by relevance

12345678910>>...51

/freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsMSAInstrFormats.td30 class MSA_BIT_B_FMT<bits<3> major, bits<6> minor>: MSAInst {
35 let Inst{25-23} = major;
43 class MSA_BIT_H_FMT<bits<3> major, bits<6> minor>: MSAInst {
48 let Inst{25-23} = major;
56 class MSA_BIT_W_FMT<bits<3> major, bits<6> minor>: MSAInst {
61 let Inst{25-23} = major;
69 class MSA_BIT_D_FMT<bits<3> major, bits<6> minor>: MSAInst {
74 let Inst{25-23} = major;
82 class MSA_2R_FILL_FMT<bits<8> major, bits<2> df, bits<6> minor>: MSAInst {
86 let Inst{25-18} = major;
[all …]
/freebsd-src/crypto/openssl/test/testutil/
H A Dprovider.c69 int major, minor, patch; member
89 || sscanf(vs, "%d.%d.%d", &vers->major, &vers->minor, &vers->patch) != 3) in fips_provider_version()
99 int fips_provider_version_eq(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_eq() argument
106 return major == prov.major && minor == prov.minor && patch == prov.patch; in fips_provider_version_eq()
109 int fips_provider_version_ne(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_ne() argument
116 return major != prov.major || minor != prov.minor || patch != prov.patch; in fips_provider_version_ne()
119 int fips_provider_version_le(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_le() argument
126 return prov.major < major in fips_provider_version_le()
127 || (prov.major == major in fips_provider_version_le()
132 int fips_provider_version_lt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) in fips_provider_version_lt() argument
[all …]
/freebsd-src/crypto/heimdal/lib/gssapi/mech/
H A Dgss_mo.c121 OM_uint32 major, minor; in gss_mo_list() local
131 major = gss_create_empty_oid_set(&minor, options); in gss_mo_list()
132 if (major != GSS_S_COMPLETE) in gss_mo_list()
239 OM_uint32 major; in inquire_saslname_for_mech_compat() local
248 major = gmc->gmc_inquire_saslname_for_mech(minor, in inquire_saslname_for_mech_compat()
254 major = GSS_S_UNAVAILABLE; in inquire_saslname_for_mech_compat()
257 return major; in inquire_saslname_for_mech_compat()
281 OM_uint32 major; in gss_inquire_saslname_for_mech() local
293 major = mo_value(desired_mech, GSS_C_MA_SASL_MECH_NAME, sasl_mech_name); in gss_inquire_saslname_for_mech()
294 if (major == GSS_S_COMPLETE) { in gss_inquire_saslname_for_mech()
[all …]
H A Dgss_cred.c55 OM_uint32 major; in gss_export_cred() local
80 major = mc->gmc_mech->gm_export_cred(minor_status, in gss_export_cred()
82 if (major) { in gss_export_cred()
84 return major; in gss_export_cred()
119 OM_uint32 major, junk; in gss_import_cred() local
156 major = GSS_S_FAILURE; in gss_import_cred()
166 major = GSS_S_BAD_MECH; in gss_import_cred()
172 major = GSS_S_BAD_MECH; in gss_import_cred()
179 major = GSS_S_FAILURE; in gss_import_cred()
186 major = m->gm_import_cred(minor_status, in gss_import_cred()
[all …]
/freebsd-src/contrib/tcpdump/
H A Dcompiler-tests.h77 * Check whether this is GCC major.minor or a later release, or some
84 #define ND_IS_AT_LEAST_GNUC_VERSION(major, minor) 0 argument
87 #define ND_IS_AT_LEAST_GNUC_VERSION(major, minor) \ argument
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 argument
101 #define ND_IS_AT_LEAST_CLANG_VERSION(major, minor) \ argument
102 (__clang_major__ > (major) || \
103 (__clang_major__ == (major) && __clang_minor__ >= (minor)))
[all …]
/freebsd-src/contrib/libpcap/pcap/
H A Dcompiler-tests.h77 * Check whether this is GCC major.minor or a later release, or some
84 #define PCAP_IS_AT_LEAST_GNUC_VERSION(major, minor) 0 argument
87 #define PCAP_IS_AT_LEAST_GNUC_VERSION(major, minor) \ argument
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 argument
101 #define PCAP_IS_AT_LEAST_CLANG_VERSION(major, minor) \ argument
102 (__clang_major__ > (major) || \
103 (__clang_major__ == (major) && __clang_minor__ >= (minor)))
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DVersionTuple.h11 /// the form major[.minor[.subminor]].
28 /// Represents a version number in the form major[.minor[.subminor[.build]]].
30 unsigned Major : 32; variable
43 : Major(0), Minor(0), HasMinor(false), Subminor(0), HasSubminor(false), in VersionTuple()
46 explicit constexpr VersionTuple(unsigned Major) in VersionTuple() argument
47 : Major(Major), Minor(0), HasMinor(false), Subminor(0), in VersionTuple()
50 explicit constexpr VersionTuple(unsigned Major, unsigned Minor) in VersionTuple() argument
51 : Major(Major), Minor(Minor), HasMinor(true), Subminor(0), in VersionTuple()
54 explicit constexpr VersionTuple(unsigned Major, unsigned Minor, in VersionTuple() argument
56 : Major(Major), Minor(Minor), HasMinor(true), Subminor(Subminor), in VersionTuple()
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.h35 u16 major; member
38 VersionBase(u16 major, u16 minor) : major(major), minor(minor) {} in VersionBase()
41 return major == other.major && minor == other.minor;
44 return major > other.major ||
45 (major == other.major && minor >= other.minor);
51 MacosVersion(u16 major, u16 minor) : VersionBase(major, minor) {} in MacosVersion()
55 DarwinKernelVersion(u16 major, u16 minor) : VersionBase(major, minor) {} in DarwinKernelVersion()
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/devices/
H A Ddevices_common.kshlib53 # %t - major device type in hex
56 major=$(stat --dereference --format="%t" "$devstr")
58 log_must mknod $filename b "0x${major}" "0x${minor}"
66 major=${devstr##*\(}
67 major=${major%%/*}
70 log_must mknod $filename b $major $minor
82 # %t - major device type in hex
85 major=$(stat --format="%t" /dev/null)
87 log_must mknod $filename c "0x${major}" "0x${minor}"
93 major=13
[all …]
/freebsd-src/crypto/openssl/
H A DNEWS.md4 This file gives a brief overview of the major changes between each OpenSSL
21 ### Major changes between OpenSSL 3.0.14 and OpenSSL 3.0.15 [3 Sep 2024]
34 ### Major changes between OpenSSL 3.0.13 and OpenSSL 3.0.14 [4 Jun 2024]
46 ### Major changes between OpenSSL 3.0.12 and OpenSSL 3.0.13 [30 Jan 2024]
58 ### Major changes between OpenSSL 3.0.11 and OpenSSL 3.0.12 [24 Oct 2023]
63 ### Major changes between OpenSSL 3.0.10 and OpenSSL 3.0.11 [19 Sep 2023]
68 ### Major changes between OpenSSL 3.0.9 and OpenSSL 3.0.10 [1 Aug 2023]
74 ### Major changes between OpenSSL 3.0.8 and OpenSSL 3.0.9 [30 May 2023]
85 ### Major changes between OpenSSL 3.0.7 and OpenSSL 3.0.8 [7 Feb 2023]
97 ### Major change
[all...]
/freebsd-src/sys/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_cc.c158 REPORT_ERROR(MAJOR, E_NO_MEMORY, ("statistics object")); in GetStatsObj()
167 REPORT_ERROR(MAJOR, E_NO_MEMORY, ("MURAM allocation for statistics ADs")); in GetStatsObj()
179 REPORT_ERROR(MAJOR, E_NO_MEMORY, ("MURAM allocation for statistics counters")); in GetStatsObj()
398 RETURN_ERROR(MAJOR, E_NO_MEMORY, in AllocAndFillAdForContLookupManip()
497 RETURN_ERROR(MAJOR, E_NOT_IN_RANGE, NO_MSG); in SetRequiredAction1()
500 RETURN_ERROR(MAJOR, E_INVALID_STATE, in SetRequiredAction1()
504 MAJOR, E_INVALID_STATE, in SetRequiredAction1()
512 RETURN_ERROR(MAJOR, err, NO_MSG); in SetRequiredAction1()
525 MAJOR, in SetRequiredAction1()
530 MAJOR, in SetRequiredAction1()
[all …]
H A Dfm_kg.c189 REPORT_ERROR(MAJOR, E_INVALID_VALUE, ("Illegal 'extract from' src")); in GetGenCode()
216 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Illegal MPLS header index")); in GetGenHdrCode()
223 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Illegal IPv4 header index")); in GetGenHdrCode()
230 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Illegal IPv6 header index")); in GetGenHdrCode()
247 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Extraction not supported")); in GetGenHdrCode()
267 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Indexed MPLS Extraction not supported")); in GetGenHdrCode()
269 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Illegal MPLS header index")); in GetGenHdrCode()
277 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Illegal IP header index")); in GetGenHdrCode()
296 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Extraction not supported")); in GetGenHdrCode()
314 REPORT_ERROR(MAJOR, E_NOT_SUPPORTED, ("Extraction not supported")); in GetGenFieldCode()
[all …]
H A Dfm_manip.c331 MAJOR, in GetPrOffsetByHeaderOrField()
349 MAJOR, in GetPrOffsetByHeaderOrField()
356 MAJOR, in GetPrOffsetByHeaderOrField()
417 MAJOR, in GetPrOffsetByHeaderOrField()
1122 RETURN_ERROR(MAJOR, E_NO_MEMORY, ("MURAM alloc failed")); in CreateManipActionNew()
1143 RETURN_ERROR(MAJOR, E_NO_MEMORY, in CreateManipActionNew()
1398 MAJOR, in UpdateManipIc()
1418 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("this manipulation was updated previousely by different valu… in UpdateManipIc()
1449 MAJOR, E_INVALID_STATE, in UpdateInitMvIntFrameHeaderFromFrameToBufferPrefix()
1458 RETURN_ERROR(MAJOR, err, NO_MSG); in UpdateInitMvIntFrameHeaderFromFrameToBufferPrefix()
[all …]
H A Dfm_replic.c103 …RETURN_ERROR(MAJOR, E_NOT_SUPPORTED, ("Next engine of a member should be MatchTable(cc) or Done or… in MemberCheckParams()
108 RETURN_ERROR(MAJOR, err, ("member next engine parameters")); in MemberCheckParams()
121 …RETURN_ERROR(MAJOR, E_NOT_IN_RANGE, ("maxNumOfEntries in the frame replicator parameters should be… in CheckParams()
125 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("numOFEntries in the frame replicator group should be greate… in CheckParams()
129 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("maxNumOfEntries should be equal or greater than numOfEntrie… in CheckParams()
135 RETURN_ERROR(MAJOR, err, ("member check parameters")); in CheckParams()
235 RETURN_ERROR(MAJOR, E_INVALID_HANDLE, ("Host command")); in ModifyDescriptor()
241 RETURN_ERROR(MAJOR, err, ("Dynamic change host command")); in ModifyDescriptor()
311 … RETURN_ERROR(MAJOR, err, ("Modify source Descriptor in BuildShadowAndModifyDescriptor")); in BuildShadowAndModifyDescriptor()
335 RETURN_ERROR(MAJOR, err, ("Modify Descriptor in BuildShadowAndModifyDescriptor")); in BuildShadowAndModifyDescriptor()
[all …]
H A Dfm_plcr.c139 RETURN_ERROR(MAJOR, E_INVALID_SELECTION, NO_MSG); in SetProfileNia()
146 RETURN_ERROR(MAJOR, E_NOT_IN_RANGE, NO_MSG); in SetProfileNia()
148 RETURN_ERROR(MAJOR, E_INVALID_STATE, ("Invalid direct scheme.")); in SetProfileNia()
150 …RETURN_ERROR(MAJOR, E_INVALID_STATE, ("Policer Profile may point only to a scheme that is always d… in SetProfileNia()
156 RETURN_ERROR(MAJOR, E_INVALID_STATE, ("Next profile must be a shared profile")); in SetProfileNia()
158 RETURN_ERROR(MAJOR, E_INVALID_STATE, ("Invalid profile ")); in SetProfileNia()
162 RETURN_ERROR(MAJOR, E_INVALID_SELECTION, NO_MSG); in SetProfileNia()
279 …REPORT_ERROR(MAJOR, E_INVALID_SELECTION, ("timeStampPeriod to Information rate ratio is too small"… in CalcRates()
345 RETURN_ERROR(MAJOR, E_NOT_AVAILABLE, ("Timestamp scale")); in BuildProfileRegs()
350 RETURN_ERROR(MAJOR, err, NO_MSG); in BuildProfileRegs()
[all …]
/freebsd-src/share/man/man3/
H A Dmakedev.330 .Nm major ,
36 .Fn makedev "int major" "int minor"
38 .Fn major "dev_t dev"
45 .Fa major
50 .Fn major
64 .Dl dev == makedev(major(dev), minor(dev))
65 .Dl ma == major(makedev(ma, mi))
72 stable major and minor numbers.
73 The major number referred to a certain device class (e.g. disks, TTYs)
92 .Fn major
/freebsd-src/crypto/openssl/doc/internal/man7/
H A DVERSION.pod9 MAJOR=3
25 =item B<MAJOR>, B<MINOR>, B<PATCH>
27 The three parts of OpenSSL's 3 numbered version number, MAJOR.MINOR.PATCH.
54 It is a configuration error if B<MAJOR>, B<MINOR>, B<PATCH> and B<SHLIB_VERSION>
63 =item $config{major}, $config{minor}, $config{patch}, $config{shlib_version}
65 These items get their values from B<MAJOR>, B<MINOR>, B<PATCH>, and
85 The minimal version number, a string composed from B<MAJOR>, B<MINOR> and
86 B<PATCH>, separated by periods. For C<MAJOR=3>, C<MINOR=0> and C<PATCH=0>,
103 MAJOR=3
114 MAJOR=3
[all …]
/freebsd-src/sys/contrib/ncsw/Peripherals/FM/Port/
H A Dfm_port.c69 MAJOR, in CheckInitParameters()
87 MAJOR, in CheckInitParameters()
94 RETURN_ERROR(MAJOR, E_INVALID_VALUE, NO_MSG); in CheckInitParameters()
101 RETURN_ERROR(MAJOR, E_INVALID_VALUE, in CheckInitParameters()
107 MAJOR, in CheckInitParameters()
114 RETURN_ERROR(MAJOR, E_NOT_SUPPORTED, ("BackupBmPools")); in CheckInitParameters()
125 MAJOR, in CheckInitParameters()
134 MAJOR, in CheckInitParameters()
149 MAJOR, in CheckInitParameters()
163 RETURN_ERROR(MAJOR, E_INVALID_VALUE, in CheckInitParameters()
[all …]
/freebsd-src/contrib/ntp/
H A Dpackageinfo.sh18 # 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.
/freebsd-src/share/man/man9/
H A Dgone_in.936 .Fn gone_in "int major" "const char *msg"
38 .Fn gone_in_dev "device_t dev" "int major" "const char *msg"
50 .Fa major
51 argument specifies the major version of the
56 .Fa major
60 .Fa major Ns ):
64 .Fa major
/freebsd-src/sys/contrib/openzfs/
H A DRELEASES.md1 OpenZFS uses the MAJOR.MINOR.PATCH versioning scheme described here:
3 * MAJOR - Incremented at the discretion of the OpenZFS developers to indicate
4 a particularly noteworthy feature or change. An increase in MAJOR number
8 Increasing the MAJOR version is expected to be an infrequent occurrence.
20 be stable. PATCH releases for a MAJOR.MINOR are published as needed.
24 * OpenZFS LTS - A designated MAJOR.MINOR release with periodic PATCH
33 * OpenZFS current - Tracks the newest MAJOR.MINOR release. This branch
/freebsd-src/crypto/openssh/
H A Dgss-genr.c119 *major_status = ctxt->major; in ssh_gssapi_last_error()
126 gss_display_status(&lmin, ctxt->major, in ssh_gssapi_last_error()
218 ctx->major = gss_init_sec_context(&ctx->minor, in ssh_gssapi_init_ctx()
223 if (GSS_ERROR(ctx->major)) in ssh_gssapi_init_ctx()
226 return (ctx->major); in ssh_gssapi_init_ctx()
240 if ((ctx->major = gss_import_name(&ctx->minor, in ssh_gssapi_import_name()
245 return (ctx->major); in ssh_gssapi_import_name()
251 if ((ctx->major = gss_get_mic(&ctx->minor, ctx->context, in ssh_gssapi_sign()
255 return (ctx->major); in ssh_gssapi_sign()
277 OM_uint32 major, minor; in ssh_gssapi_check_mechanism() local
[all …]
H A Dgss-serv.c115 return (ctx->major); in ssh_gssapi_acquire_cred()
118 if ((ctx->major = gss_acquire_cred(&ctx->minor, in ssh_gssapi_acquire_cred()
124 return (ctx->major); in ssh_gssapi_acquire_cred()
182 ctx->major = gss_accept_sec_context(&ctx->minor, in ssh_gssapi_accept_ctx()
187 if (GSS_ERROR(ctx->major)) in ssh_gssapi_accept_ctx()
195 status = ctx->major; in ssh_gssapi_accept_ctx()
202 (*flags & GSS_C_INTEG_FLAG))) && (ctx->major == GSS_S_COMPLETE)) { in ssh_gssapi_accept_ctx()
295 if ((ctx->major = gss_display_name(&ctx->minor, ctx->client, in ssh_gssapi_getclient()
298 return (ctx->major); in ssh_gssapi_getclient()
301 if ((ctx->major = gss_export_name(&ctx->minor, ctx->client, in ssh_gssapi_getclient()
[all …]
/freebsd-src/sys/contrib/ncsw/Peripherals/FM/SP/
H A Dfm_sp.c58 RETURN_ERROR(MAJOR, err, NO_MSG); in CheckParamsGeneratedInternally()
60 RETURN_ERROR(MAJOR, err, NO_MSG); in CheckParamsGeneratedInternally()
77 RETURN_ERROR(MAJOR, err, NO_MSG); in CheckParams()
80 … RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("liodnOffset is larger than %d", FM_LIODN_OFFSET_MASK+1)); in CheckParams()
147 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("numOfPoolsUsed can't be larger than %d", FM_PORT_MAX_NUM_OF… in FmSpCheckBufPoolsParams()
152 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("extBufPools.extBufPool[%d].id can't be larger than %d", i, … in FmSpCheckBufPoolsParams()
154 RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("extBufPools.extBufPool[%d].size is 0", i)); in FmSpCheckBufPoolsParams()
158 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("backupBmPools ot bufPoolDepletion can not be defined withou… in FmSpCheckBufPoolsParams()
165 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("p_BackupBmPools must be smaller than extBufPools.numOfPools… in FmSpCheckBufPoolsParams()
179 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("All p_BackupBmPools.poolIds must be included in extBufPools… in FmSpCheckBufPoolsParams()
[all …]
/freebsd-src/sys/compat/linux/
H A Dlinux_util.c153 linux_driver_get_major_minor(const char *node, int *major, int *minor) in linux_driver_get_major_minor() argument
159 if (node == NULL || major == NULL || minor == NULL) in linux_driver_get_major_minor()
165 * Linux checks major and minors of the slave device in linux_driver_get_major_minor()
170 *major = 136 + (devno / 256); in linux_driver_get_major_minor()
178 *major = 226 + (devno / 256); in linux_driver_get_major_minor()
185 *major = 226 + (devno / 256); in linux_driver_get_major_minor()
192 *major = 226 + (devno / 256); in linux_driver_get_major_minor()
199 *major = 226 + (devno / 256); in linux_driver_get_major_minor()
206 *major = de->entry.linux_major; in linux_driver_get_major_minor()
216 linux_vn_get_major_minor(const struct vnode *vp, int *major, int *minor) in linux_vn_get_major_minor() argument
[all …]

12345678910>>...51