Home
last modified time | relevance | path

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

12345678910>>...195

/external/ltp/testcases/kernel/device-drivers/block/block_dev_kernel/
Dltp_block_dev.c34 * Analysis of "int register_blkdev(unsigned int major, const char *name)"
40 * major | [0] | valid | tc01, tc02
83 "major numbers (major=0)\n"); in tc01()
113 int major[MAX_MAJOR + 1]; in tc02() local
116 /* Try to allocate block devices until all major numbers are used. in tc02()
121 "with auto allocating major numbers (major=0)\n"); in tc02()
123 memset(major, 0, sizeof(major)); in tc02()
125 for (i = 0; i < sizeof(major) / sizeof(*major); ++i) { in tc02()
126 major[i] = register_blkdev(0, BLK_DEV_NAME); in tc02()
127 prk_debug("major[%i] = %i\n", i, major[i]); in tc02()
[all …]
/external/tcpdump/tests/
Disakmp-no-none-np.out3 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
4 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
5 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
6 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
7 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
8 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
9 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
10 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
11 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
12 …(n: doi=ipsec proto=isakmp type=INVALID-MAJOR-VERSION spi=000000000b1005005f724dc600000054 data=(0…
[all …]
Daoe_1-v.out2 Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000
5 Major: 0xffff, Minor: 0xff, Command: Query Config Information, Tag: 0x00000000
9 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0001cd4a
14 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0001cd4a
19 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0002cd63
24 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0003cd63
29 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0004cd63
34 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0005cd64
39 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0002cd63
44 Major: 0x0014, Minor: 0x00, Command: Issue ATA Command, Tag: 0x0003cd63
[all …]
/external/llvm/lib/Target/Mips/
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 …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
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 …]
/external/brotli/c/include/brotli/
Dport.h17 #define BROTLI_MAKE_VERSION(major, minor, revision) \ argument
18 (((major) * 1000000) + ((minor) * 1000) + (revision))
28 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) \ argument
29 (BROTLI_GNUC_VERSION >= BROTLI_MAKE_VERSION(major, minor, patch))
31 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) (0) argument
50 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) (0) argument
52 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \ argument
53 (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch)))
55 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \ argument
56 (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch)))
[all …]
/external/cronet/third_party/brotli/include/brotli/
Dport.h17 #define BROTLI_MAKE_VERSION(major, minor, revision) \ argument
18 (((major) * 1000000) + ((minor) * 1000) + (revision))
28 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) \ argument
29 (BROTLI_GNUC_VERSION >= BROTLI_MAKE_VERSION(major, minor, patch))
31 #define BROTLI_GNUC_VERSION_CHECK(major, minor, patch) (0) argument
50 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) (0) argument
52 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \ argument
53 (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch)))
55 #define BROTLI_MSVC_VERSION_CHECK(major, minor, patch) \ argument
56 (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch)))
[all …]
/external/tensorflow/third_party/gpus/
Dfind_rocm_config.py53 def _get_composite_version_number(major, minor, patch): argument
54 return 10000 * major + 100 * minor + patch
81 major = int(version_numbers[0])
84 return major, minor, patch
91 major = _get_header_version(version_file, "ROCM_VERSION_MAJOR")
94 return True, "", major, minor, patch
96 status, error_msg, major, minor, patch = \
100 major, minor, patch = \
104 "rocm_version_number": _get_composite_version_number(major, minor, patch)
119 # Retreive the major + minor and re-calculate here, since we do not
[all …]
/external/harfbuzz_ng/test/api/
Dtest-version.c35 unsigned int major, minor, micro; in test_version() local
38 hb_version (&major, &minor, &micro); in test_version()
40 g_assert_cmpint (major, ==, HB_VERSION_MAJOR); in test_version()
44 s = g_strdup_printf ("%u.%u.%u", major, minor, micro); in test_version()
49 g_assert (HB_VERSION_ATLEAST (major, minor, micro)); in test_version()
50 if (major) in test_version()
51 g_assert (HB_VERSION_ATLEAST (major-1, minor, micro)); in test_version()
53 g_assert (HB_VERSION_ATLEAST (major, minor-1, micro)); in test_version()
55 g_assert (HB_VERSION_ATLEAST (major, minor, micro-1)); in test_version()
56 g_assert (!HB_VERSION_ATLEAST (major+1, minor, micro)); in test_version()
[all …]
/external/tcpdump/
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 …]
/external/libpcap/pcap/
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 …]
/external/cbor-java/src/main/java/co/nstant/in/cbor/model/
DMajorType.java8 * Major type 0: an unsigned integer. The 5-bit additional information is
13 * is denoted as the one byte 0b000_01010 (major type 0, additional
14 * information 10). The integer 500 would be 0b000_11001 (major type 0,
21 * Major type 1: a negative integer. The encoding follows the rules for
22 * unsigned integers (major type 0), except that the value is then -1 minus
24 * 0b001_11001 (major type 1, additional information 25) followed by the two
30 * Major type 2: a byte string. The string's length in bytes is represented
31 * following the rules for positive integers (major type 0). For example, a
33 * (major type 2, additional information 5 for the length), followed by 5
35 * initial bytes of 0b010_11001 (major type 2, additional information 25 to
[all …]
/external/eigen/doc/
DStorageOrders.dox5 …e two different storage orders for matrices and two-dimensional arrays: column-major and row-major.
11 \section TopicStorageOrdersIntro Column-major and row-major storage
16 We say that a matrix is stored in \b row-major order if it is stored row by row. The entire first r…
27 If this matrix is stored in row-major order, then the entries are laid out in memory as follows:
31 On the other hand, a matrix is stored in \b column-major order if it is stored column by column, st…
33 column-major order, it is laid out as follows:
56 parameter is set to \c RowMajor, then the matrix or array is stored in row-major order; if it is se…
57 \c ColMajor, then it is stored in column-major order. This mechanism is used in the above Eigen pro…
60 If the storage order is not specified, then Eigen defaults to storing the entry in column-major. Th…
65 the entries automatically. More generally, row-major and column-major matrices can be mixed in an e…
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DVersionTuple.h11 /// the form major[.minor[.subminor]].
25 /// Represents a version number in the form major[.minor[.subminor[.build]]].
27 unsigned Major : 32; variable
40 : Major(0), Minor(0), HasMinor(false), Subminor(0), HasSubminor(false), in VersionTuple()
43 explicit VersionTuple(unsigned Major) in VersionTuple() argument
44 : Major(Major), Minor(0), HasMinor(false), Subminor(0), in VersionTuple()
47 explicit VersionTuple(unsigned Major, unsigned Minor) in VersionTuple() argument
48 : Major(Major), Minor(Minor), HasMinor(true), Subminor(0), in VersionTuple()
51 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor) in VersionTuple() argument
52 : Major(Major), Minor(Minor), HasMinor(true), Subminor(Subminor), in VersionTuple()
[all …]
/external/clang/include/clang/Basic/
DVersionTuple.h12 /// the form major[.minor[.subminor]].
25 /// \brief Represents a version number in the form major[.minor[.subminor[.build]]].
27 unsigned Major : 31; variable
42 : Major(0), UsesUnderscores(false), Minor(0), HasMinor(false), in VersionTuple()
45 explicit VersionTuple(unsigned Major) in VersionTuple() argument
46 : Major(Major), UsesUnderscores(false), Minor(0), HasMinor(false), in VersionTuple()
49 explicit VersionTuple(unsigned Major, unsigned Minor,
51 : Major(Major), UsesUnderscores(UsesUnderscores), Minor(Minor), in Major() function
55 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor,
57 : Major(Major), UsesUnderscores(UsesUnderscores), Minor(Minor), in Major() function
[all …]
/external/opencensus-java/
DRELEASING.md49 naming convention of `v<major>.<minor>.x`, while the tags include the patch
50 version `v<major>.<minor>.<patch>`. For example, the same branch `v0.4.x` would
62 $ MAJOR=0 MINOR=4 PATCH=0 # Set appropriately for new release
70 $ git checkout -b v$MAJOR.$MINOR.x master
71 $ git push upstream v$MAJOR.$MINOR.x
84 …$ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_OPENCENSUS_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \
87 $ git commit -a -m "Start $MAJOR.$((MINOR+1)).0 development cycle"
104 $ git checkout -b release v$MAJOR.$MINOR.x
108 $ git commit -a -m "Bump version to $MAJOR.$MINOR.$PATCH"
109 $ git tag -a v$MAJOR.$MINOR.$PATCH -m "Version $MAJOR.$MINOR.$PATCH"
[all …]
/external/angle/src/libANGLE/
DVersion.inc20 #undef major
24 : major(major_),
31 return std::tie(a.major, a.minor) == std::tie(b.major, b.minor);
36 return std::tie(a.major, a.minor) != std::tie(b.major, b.minor);
41 return std::tie(a.major, a.minor) >= std::tie(b.major, b.minor);
46 return std::tie(a.major, a.minor) <= std::tie(b.major, b.minor);
51 return std::tie(a.major, a.minor) < std::tie(b.major, b.minor);
56 return std::tie(a.major, a.minor) > std::tie(b.major, b.minor);
/external/rust/crates/semver/src/
Deval.rs16 // same major.minor.patch also has a prerelease tag. in matches_req()
45 if ver.major != cmp.major { in matches_exact()
65 if ver.major != cmp.major { in matches_greater()
66 return ver.major > cmp.major; in matches_greater()
91 if ver.major != cmp.major { in matches_less()
92 return ver.major < cmp.major; in matches_less()
117 if ver.major != cmp.major { in matches_tilde()
137 if ver.major != cmp.major { in matches_caret()
148 if cmp.major > 0 { in matches_caret()
157 if cmp.major > 0 { in matches_caret()
[all …]
/external/tensorflow/tensorflow/compiler/xla/
Dlayout_util.h36 // Creates a layout with the given minor-to-major dimension order. (This is a
48 // Returns a layout with descending ((i.e. {n-1, n-2, ... 0}) minor-to-major
52 // Returns a layout with ascending ((i.e. {0, 1, ... n-1}) minor-to-major
137 // * R2+: equivalent to column-major. Dimension 0 is the minor, dimension 1 is
138 // more major, and so on until dimension N-1 which is the major.
141 // Returns whether the layout is monotonic and dim 0 is major in the layout.
143 // * R2+: equivalent to row-major. Dimension 0 is the major, dimension 1 is
162 // Major(0) is the most major logical dimension number, Major(1) is the
163 // second-most-major logical dimension number and so on.
167 // that the most major physical dimension has physical dimension number 0 and
[all …]
/external/rust/crates/ciborium-ll/src/
Dhdr.rs100 Title(Major::Positive, minor) => Self::Positive(int(minor)?), in try_from()
101 Title(Major::Negative, minor) => Self::Negative(int(minor)?), in try_from()
102 Title(Major::Bytes, minor) => Self::Bytes(len(minor)?), in try_from()
103 Title(Major::Text, minor) => Self::Text(len(minor)?), in try_from()
104 Title(Major::Array, minor) => Self::Array(len(minor)?), in try_from()
105 Title(Major::Map, minor) => Self::Map(len(minor)?), in try_from()
106 Title(Major::Tag, minor) => Self::Tag(int(minor)?), in try_from()
108 Title(Major::Other, Minor::More) => Self::Break, in try_from()
109 Title(Major::Other, Minor::This(x)) => Self::Simple(x), in try_from()
110 Title(Major::Other, Minor::Next1(x)) => Self::Simple(x[0]), in try_from()
[all …]
/external/grpc-grpc-java/
DRELEASING.md32 $ MAJOR=1 MINOR=7 PATCH=0 # Set appropriately for new release
55 convention of `v<major>.<minor>.x`, while the tags include the patch version
56 `v<major>.<minor>.<patch>`. For example, the same branch `v1.7.x`
65 $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \
67 $ sed -i s/$MAJOR.$MINOR.$PATCH/$MAJOR.$((MINOR+1)).0/ \
70 $ git commit -a -m "Start $MAJOR.$((MINOR+1)).0 development cycle"
77 $ git checkout -b v$MAJOR.$MINOR.x \
78 …$(git log --pretty=format:%H --grep "^Start $MAJOR.$((MINOR+1)).0 development cycle$" upstream/mas…
79 $ git push upstream v$MAJOR.$MINOR.x
83 * Branch: `v$MAJOR.$MINOR.x`
[all …]
/external/clang/test/Driver/
Dmsc-version.c5 …patibility-version=14 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR
7 // CHECK-MSC-VERSION-MAJOR: _MSC_BUILD 1
8 // CHECK-MSC-VERSION-MAJOR: _MSC_FULL_VER 140000000
9 // CHECK-MSC-VERSION-MAJOR: _MSC_VER 1400
11 …y-version=15.00 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR-MINOR
13 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_BUILD 1
14 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_FULL_VER 150000000
15 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_VER 1500
17 ….00.20706 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR-MINOR-BUILD
19 // CHECK-MSC-VERSION-MAJOR-MINOR-BUILD: _MSC_BUILD 1
[all …]
/external/rust/crates/vulkano/src/
Dversion.rs18 /// Major version number.
19 pub major: u32, field
31 /// Constructs a `Version` from the given major and minor version numbers.
33 pub const fn major_minor(major: u32, minor: u32) -> Version { in major_minor()
35 major, in major_minor()
52 major: ash::vk::api_version_major(val), in from()
64 if val.major <= 0x3ff && val.minor <= 0x3ff && val.patch <= 0xfff { in try_from()
66 0, val.major, val.minor, val.patch, in try_from()
76 write!(formatter, "{}.{}.{}", self.major, self.minor, self.patch) in fmt()
94 major: 1, in into_vk_version()
[all …]
/external/harfbuzz_ng/src/
Dhb-bit-set.hh72 int cmp (const page_map_t &o) const { return cmp (o.major); } in cmp()
73 int cmp (uint32_t o_major) const { return (int) o_major - (int) major; } in cmp()
75 uint32_t major; member
133 h = h * 31 + hb_hash (map.major) + hb_hash (pages[map.index]); in hash()
283 int m = (int) page_map[i].major; in del_pages()
375 if (page_map[a].major != other.page_map[b].major || in is_equal()
398 uint32_t spm = page_map[spi].major; in is_subset()
399 uint32_t lpm = larger_set.page_map[lpi].major; in is_subset()
489 if (page_map[a].major == other.page_map[b].major) in process_()
506 else if (page_map[a].major < other.page_map[b].major) in process_()
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/tsi/alts/handshaker/
Dtransport_security_common_api.cc34 versions->max_rpc_version.major = max_major; in grpc_gcp_rpc_protocol_versions_set_max()
48 versions->min_rpc_version.major = min_major; in grpc_gcp_rpc_protocol_versions_set_min()
116 versions->max_rpc_version.major = in grpc_gcp_rpc_protocol_versions_assign_from_upb()
121 versions->max_rpc_version.major = 0; in grpc_gcp_rpc_protocol_versions_assign_from_upb()
127 versions->min_rpc_version.major = in grpc_gcp_rpc_protocol_versions_assign_from_upb()
132 versions->min_rpc_version.major = 0; in grpc_gcp_rpc_protocol_versions_assign_from_upb()
143 value->max_rpc_version.major); in grpc_gcp_RpcProtocolVersions_assign_from_struct()
149 value->min_rpc_version.major); in grpc_gcp_RpcProtocolVersions_assign_from_struct()
167 grpc_gcp_rpc_protocol_versions_set_max(dst, src->max_rpc_version.major, in grpc_gcp_rpc_protocol_versions_copy()
169 grpc_gcp_rpc_protocol_versions_set_min(dst, src->min_rpc_version.major, in grpc_gcp_rpc_protocol_versions_copy()
[all …]

12345678910>>...195