| /external/cronet/tot/third_party/rust/chromium_crates_io/vendor/semver-1.0.23/src/ |
| D | eval.rs | 16 // same major.minor.patch also has a prerelease tag. in matches_req() 49 if let Some(minor) = cmp.minor { in matches_exact() 50 if ver.minor != minor { in matches_exact() 69 match cmp.minor { in matches_greater() 71 Some(minor) => { in matches_greater() 72 if ver.minor != minor { in matches_greater() 73 return ver.minor > minor; in matches_greater() 95 match cmp.minor { in matches_less() 97 Some(minor) => { in matches_less() 98 if ver.minor != minor { in matches_less() [all …]
|
| /external/cronet/stable/third_party/rust/chromium_crates_io/vendor/semver-1.0.23/src/ |
| D | eval.rs | 16 // same major.minor.patch also has a prerelease tag. in matches_req() 49 if let Some(minor) = cmp.minor { in matches_exact() 50 if ver.minor != minor { in matches_exact() 69 match cmp.minor { in matches_greater() 71 Some(minor) => { in matches_greater() 72 if ver.minor != minor { in matches_greater() 73 return ver.minor > minor; in matches_greater() 95 match cmp.minor { in matches_less() 97 Some(minor) => { in matches_less() 98 if ver.minor != minor { in matches_less() [all …]
|
| /external/rust/android-crates-io/crates/semver/src/ |
| D | eval.rs | 16 // same major.minor.patch also has a prerelease tag. in matches_req() 49 if let Some(minor) = cmp.minor { in matches_exact() 50 if ver.minor != minor { in matches_exact() 69 match cmp.minor { in matches_greater() 71 Some(minor) => { in matches_greater() 72 if ver.minor != minor { in matches_greater() 73 return ver.minor > minor; in matches_greater() 95 match cmp.minor { in matches_less() 97 Some(minor) => { in matches_less() 98 if ver.minor != minor { in matches_less() [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/Mips/ |
| D | MipsMSAInstrFormats.td | 30 class MSA_BIT_B_FMT<bits<3> major, bits<6> minor>: MSAInst { 40 let Inst{5-0} = minor; 43 class MSA_BIT_H_FMT<bits<3> major, bits<6> minor>: MSAInst { 53 let Inst{5-0} = minor; 56 class MSA_BIT_W_FMT<bits<3> major, bits<6> minor>: MSAInst { 66 let Inst{5-0} = minor; 69 class MSA_BIT_D_FMT<bits<3> major, bits<6> minor>: MSAInst { 79 let Inst{5-0} = minor; 82 class MSA_2R_FILL_FMT<bits<8> major, bits<2> df, bits<6> minor>: MSAInst { 90 let Inst{5-0} = minor; [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
| D | MipsMSAInstrFormats.td | 30 class MSA_BIT_B_FMT<bits<3> major, bits<6> minor>: MSAInst { 40 let Inst{5-0} = minor; 43 class MSA_BIT_H_FMT<bits<3> major, bits<6> minor>: MSAInst { 53 let Inst{5-0} = minor; 56 class MSA_BIT_W_FMT<bits<3> major, bits<6> minor>: MSAInst { 66 let Inst{5-0} = minor; 69 class MSA_BIT_D_FMT<bits<3> major, bits<6> minor>: MSAInst { 79 let Inst{5-0} = minor; 82 class MSA_2R_FILL_FMT<bits<8> major, bits<2> df, bits<6> minor>: MSAInst { 90 let Inst{5-0} = minor; [all …]
|
| /external/llvm/lib/Target/Mips/ |
| D | MipsMSAInstrFormats.td | 30 class MSA_BIT_B_FMT<bits<3> major, bits<6> minor>: MSAInst { 40 let Inst{5-0} = minor; 43 class MSA_BIT_H_FMT<bits<3> major, bits<6> minor>: MSAInst { 53 let Inst{5-0} = minor; 56 class MSA_BIT_W_FMT<bits<3> major, bits<6> minor>: MSAInst { 66 let Inst{5-0} = minor; 69 class MSA_BIT_D_FMT<bits<3> major, bits<6> minor>: MSAInst { 79 let Inst{5-0} = minor; 82 class MSA_2R_FILL_FMT<bits<8> major, bits<2> df, bits<6> minor>: MSAInst { 90 let Inst{5-0} = minor; [all …]
|
| /external/rust/android-crates-io/crates/ciborium-ll/src/ |
| D | hdr.rs | 79 let opt = |minor| { in try_from() 80 Some(match minor { in try_from() 81 Minor::This(x) => x.into(), in try_from() 82 Minor::Next1(x) => u8::from_be_bytes(x).into(), in try_from() 83 Minor::Next2(x) => u16::from_be_bytes(x).into(), in try_from() 84 Minor::Next4(x) => u32::from_be_bytes(x).into(), in try_from() 85 Minor::Next8(x) => u64::from_be_bytes(x), in try_from() 86 Minor::More => return None, in try_from() 100 Title(Major::Positive, minor) => Self::Positive(int(minor)?), in try_from() 101 Title(Major::Negative, minor) => Self::Negative(int(minor)?), in try_from() [all …]
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
| D | QRDecompositionImpl.java | 85 * reflectors by repeating the following operations to each minor in QRDecompositionImpl() 86 * A(minor,minor) of A: in QRDecompositionImpl() 88 for (int minor = 0; minor < FastMath.min(m, n); minor++) { in QRDecompositionImpl() 90 final double[] qrtMinor = qrt[minor]; in QRDecompositionImpl() 93 * Let x be the first column of the minor, and a^2 = |x|^2. in QRDecompositionImpl() 94 * x will be in the positions qr[minor][minor] through qr[m][minor]. in QRDecompositionImpl() 95 * The first column of the transformed minor will be (a,0,0,..)' in QRDecompositionImpl() 100 for (int row = minor; row < m; row++) { in QRDecompositionImpl() 104 … final double a = (qrtMinor[minor] > 0) ? -FastMath.sqrt(xNormSqr) : FastMath.sqrt(xNormSqr); in QRDecompositionImpl() 105 rDiag[minor] = a; in QRDecompositionImpl() [all …]
|
| /external/brotli/c/include/brotli/ |
| D | port.h | 17 #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/apache-commons-math/src/main/java/org/apache/commons/math3/linear/ |
| D | QRDecomposition.java | 118 for (int minor = 0; minor < FastMath.min(matrix.length, matrix[0].length); minor++) { in decompose() 119 performHouseholderReflection(minor, matrix); in decompose() 124 * Perform Householder reflection for a minor A(minor, minor) of A. 126 * @param minor minor index 130 protected void performHouseholderReflection(int minor, double[][] matrix) { in performHouseholderReflection() argument 132 final double[] qrtMinor = matrix[minor]; in performHouseholderReflection() 135 * Let x be the first column of the minor, and a^2 = |x|^2. in performHouseholderReflection() 136 * x will be in the positions qr[minor][minor] through qr[m][minor]. in performHouseholderReflection() 137 * The first column of the transformed minor will be (a,0,0,..)' in performHouseholderReflection() 142 for (int row = minor; row < qrtMinor.length; row++) { in performHouseholderReflection() [all …]
|
| /external/cronet/stable/third_party/brotli/include/brotli/ |
| D | port.h | 17 #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/tot/third_party/brotli/include/brotli/ |
| D | port.h | 17 #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/ |
| D | find_rocm_config.py | 53 def _get_composite_version_number(major, minor, patch): argument 54 return 10000 * major + 100 * minor + patch 82 minor = int(version_numbers[1]) 84 return major, minor, patch 92 minor = _get_header_version(version_file, "ROCM_VERSION_MINOR") 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/ |
| D | test-version.c | 35 unsigned int major, minor, micro; in test_version() local 38 hb_version (&major, &minor, µ); in test_version() 41 g_assert_cmpint (minor, ==, HB_VERSION_MINOR); 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() 51 g_assert (HB_VERSION_ATLEAST (major-1, minor, micro)); in test_version() 52 if (minor) 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/rust/android-crates-io/crates/uefi-raw/src/table/ |
| D | revision.rs | 7 /// The minor revision number is incremented on minor changes, 12 /// For major revision 2 and later, if the lower minor digit is zero, 13 /// the revision is formatted as "major.minor-upper". Otherwise it's 14 /// formatted as "major.minor-upper.minor-lower". This format is 19 /// "major.minor", with minor left-padded with zero if minor-upper is 60 pub const fn new(major: u16, minor: u16) -> Self { in new() 62 let minor = minor as u32; in new() localVariable 63 let value = (major << 16) | minor; in new() 73 /// Returns the minor revision. 75 pub const fn minor(self) -> u16 { in minor() method [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | VersionTuple.h | 11 /// the form major[.minor[.subminor]]. 25 /// Represents a version number in the form major[.minor[.subminor[.build]]]. 29 unsigned Minor : 31; variable 40 : Major(0), Minor(0), HasMinor(false), Subminor(0), HasSubminor(false), in VersionTuple() 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() 55 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor, in VersionTuple() argument [all …]
|
| /external/tcpdump/ |
| D | 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 argument 87 #define ND_IS_AT_LEAST_GNUC_VERSION(major, minor) \ argument 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 103 (__clang_major__ == (major) && __clang_minor__ >= (minor))) 107 * Check whether this is Sun C/SunPro C/Oracle Studio major.minor 112 * one or two hex digits being the minor version number, and [all …]
|
| /external/libpcap/pcap/ |
| D | 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 argument 87 #define PCAP_IS_AT_LEAST_GNUC_VERSION(major, minor) \ argument 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 103 (__clang_major__ == (major) && __clang_minor__ >= (minor))) 107 * Check whether this is Sun C/SunPro C/Oracle Studio major.minor 112 * one or two hex digits being the minor version number, and [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
| D | VersionTuple.h | 11 /// the form major[.minor[.subminor]]. 30 /// Represents a version number in the form major[.minor[.subminor[.build]]]. 34 unsigned Minor : 31; variable 45 : Major(0), Minor(0), HasMinor(false), Subminor(0), HasSubminor(false), in VersionTuple() 49 : Major(Major), Minor(0), HasMinor(false), Subminor(0), in VersionTuple() 52 explicit constexpr VersionTuple(unsigned Major, unsigned Minor) in VersionTuple() argument 53 : Major(Major), Minor(Minor), HasMinor(true), Subminor(0), in VersionTuple() 56 explicit constexpr VersionTuple(unsigned Major, unsigned Minor, in VersionTuple() argument 58 : Major(Major), Minor(Minor), HasMinor(true), Subminor(Subminor), in VersionTuple() 61 explicit constexpr VersionTuple(unsigned Major, unsigned Minor, in VersionTuple() argument [all …]
|
| /external/perfetto/ui/src/frontend/viewer_page/ |
| D | gridline_helper_unittest.ts | 41 {type: TickType.MINOR, time: 1n}, 42 {type: TickType.MINOR, time: 2n}, 43 {type: TickType.MINOR, time: 3n}, 44 {type: TickType.MINOR, time: 4n}, 46 {type: TickType.MINOR, time: 6n}, 47 {type: TickType.MINOR, time: 7n}, 48 {type: TickType.MINOR, time: 8n}, 49 {type: TickType.MINOR, time: 9n}, 62 {type: TickType.MINOR, time: 11n}, 63 {type: TickType.MINOR, time: 12n}, [all …]
|
| /external/clang/include/clang/Basic/ |
| D | VersionTuple.h | 12 /// the form major[.minor[.subminor]]. 25 /// \brief Represents a version number in the form major[.minor[.subminor[.build]]]. 31 unsigned Minor : 31; variable 42 : Major(0), UsesUnderscores(false), Minor(0), HasMinor(false), in VersionTuple() 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() 55 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor, 57 : Major(Major), UsesUnderscores(UsesUnderscores), Minor(Minor), in Major() 61 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor, [all …]
|
| /external/grpc-grpc-java/ |
| D | RELEASING.md | 19 $ MAJOR=1 MINOR=7 PATCH=0 # Set appropriately for new release 39 convention of `v<major>.<minor>.x`, while the tags include the patch version 40 `v<major>.<minor>.<patch>`. For example, the same branch `v1.7.x` 47 2. For `master`, change root build files to the next minor snapshot (e.g. 52 # Change version to next minor (and keep -SNAPSHOT) 53 $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \ 55 $ sed -i s/$MAJOR.$MINOR.$PATCH/$MAJOR.$((MINOR+1)).0/ \ 58 $ git commit -a -m "Start $MAJOR.$((MINOR+1)).0 development cycle" 65 $ git checkout -b v$MAJOR.$MINOR.x \ 66 …$(git log --pretty=format:%H --grep "^Start $MAJOR.$((MINOR+1)).0 development cycle$" upstream/mas… [all …]
|
| /external/tcpdump/tests/ |
| D | aoe_1-v.out | 2 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/libcap/ |
| D | Makefile | 38 …R).$(VERSION).$(MINOR)" $$x > /dev/null && continue ; echo "$$x is not updated. Try running: ./go… 42 $(BUILD_FGREP) "#define LIBCAP_MINOR $(MINOR)" libcap/include/sys/capability.h 48 …$(VERSION).$(MINOR) && tar cvf libcap-$(VERSION).$(MINOR).tar --exclude patches libcap-$(VERSION).… 66 …O111MODULE=on go get kernel.org/pub/linux/libs/security/libcap/cap@v$(GOMAJOR).$(VERSION).$(MINOR)" 70 … https://pkg.go.dev/kernel.org/pub/linux/libs/security/libcap/cap@v$(GOMAJOR).$(VERSION).$(MINOR)" 76 git tag -u D41A6DF2 -s libcap-$(VERSION).$(MINOR) -m "This is libcap-$(VERSION).$(MINOR)" 77 git tag -u E2CCF3F4 -s libcap-korg-$(VERSION).$(MINOR) -m "This is libcap-$(VERSION).$(MINOR)" 79 …OMAJOR).$(VERSION).$(MINOR) -m "This is the version tag for the 'libcap' Go base directory associa… 80 …OMAJOR).$(VERSION).$(MINOR) -m "This is the (stable) version tag for the 'psx' Go package associat… 81 …OMAJOR).$(VERSION).$(MINOR) -m "This is the (stable) version tag for the 'cap' Go package associat… [all …]
|
| /external/cronet/tot/third_party/rust/chromium_crates_io/vendor/font-types-0.7.3/src/ |
| D | version.rs | 3 /// Packed 32-bit value with major and minor version numbers. 15 /// A type representing a major, minor version pair. 30 /// The minor version number 31 pub minor: u16, field 39 /// greater than or equal minor version'. 57 /// Create a new version with the provided major and minor parts. 59 /// The minor version must be in the range 0..=9. 63 /// Panics if `minor > 9`. 64 pub const fn new(major: u16, minor: u16) -> Self { in new() 65 assert!(minor < 10, "minor version must be in the range [0, 9)"); in new() [all …]
|