/external/llvm/lib/Target/Mips/ |
D | MipsMSAInstrFormats.td | 30 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/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/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() 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/eigen/doc/ |
D | StorageOrders.dox | 5 …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/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]]]. 27 unsigned Major : 31; variable 38 : Major(0), Minor(0), Subminor(0), Build(0), HasMinor(false), in VersionTuple() 41 explicit VersionTuple(unsigned Major) in VersionTuple() argument 42 : Major(Major), Minor(0), Subminor(0), Build(0), HasMinor(false), in VersionTuple() 45 explicit VersionTuple(unsigned Major, unsigned Minor, 47 : Major(Major), Minor(Minor), Subminor(0), Build(0), HasMinor(true), in Major() argument 50 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor, 52 : Major(Major), Minor(Minor), Subminor(Subminor), Build(0), in Major() argument [all …]
|
/external/opencv3/modules/calib3d/src/ |
D | rho.cpp | 1909 /*float major[8][3] = {{x2X2-x0X0,y2X2-y0X0,(X0-X2)}, in hFuncRefC() 1919 …float major[3][8] = {{x2X2-x0X0,x2X2-x1X1,-x2X2 ,x2X2-x3X3,x2Y2-x0Y0,x2Y2-x1Y1,-x2Y2 ,x2Y2-x… in hFuncRefC() local 1925 * for(i=0;i<8;i++) major[2][i]=-major[2][i]; in hFuncRefC() 1934 major[0][1]=major[0][1]*scalar1-major[0][0]*scalar2; in hFuncRefC() 1935 major[1][1]=major[1][1]*scalar1-major[1][0]*scalar2; in hFuncRefC() 1936 major[2][1]=major[2][1]*scalar1-major[2][0]*scalar2; in hFuncRefC() 1938 major[0][5]=major[0][5]*scalar1-major[0][4]*scalar2; in hFuncRefC() 1939 major[1][5]=major[1][5]*scalar1-major[1][4]*scalar2; in hFuncRefC() 1940 major[2][5]=major[2][5]*scalar1-major[2][4]*scalar2; in hFuncRefC() 1945 major[0][3]=major[0][3]*scalar1-major[0][0]*scalar2; in hFuncRefC() [all …]
|
/external/skia/src/gpu/gl/ |
D | GrGLUtil.cpp | 71 int major, minor; in GrGLGetStandardInUseFromString() local 74 int n = sscanf(versionString, "%d.%d", &major, &minor); in GrGLGetStandardInUseFromString() 81 n = sscanf(versionString, "OpenGL ES-%c%c %d.%d", profile, profile+1, &major, &minor); in GrGLGetStandardInUseFromString() 88 n = sscanf(versionString, "OpenGL ES %d.%d", &major, &minor); in GrGLGetStandardInUseFromString() 101 int major, minor, rev, driverMajor, driverMinor; in GrGLGetDriverInfo() local 115 &major, &minor, &rev, &driverMajor, &driverMinor); in GrGLGetDriverInfo() 124 &major, &minor, &driverMajor, &driverMinor); in GrGLGetDriverInfo() 135 &major, &minor, &driverMajor, &driverMinor); in GrGLGetDriverInfo() 144 &major, &minor, &driverMajor, &driverMinor); in GrGLGetDriverInfo() 152 n = sscanf(versionString, "OpenGL ES %d.%d (ANGLE %d.%d", &major, &minor, &driverMajor, in GrGLGetDriverInfo() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | VersionInfo.java | 14 * Class to store version numbers of the form major.minor.milli.micro. 192 * @param version version String in the format of "major.minor.milli.micro" 193 * or "major.minor.milli" or "major.minor" or "major", 194 * where major, minor, milli, micro are non-negative numbers 239 * @param major major version, non-negative number <= 255. 245 public static VersionInfo getInstance(int major, int minor, int milli, in getInstance() argument 250 if (major < 0 || major > 255 || minor < 0 || minor > 255 || in getInstance() 254 int version = getInt(major, minor, milli, micro); in getInstance() 269 * Equivalent to getInstance(major, minor, milli, 0). 270 * @param major major version, non-negative number <= 255. [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | VersionInfo.java | 13 * Class to store version numbers of the form major.minor.milli.micro. 218 * @param version version String in the format of "major.minor.milli.micro" 219 * or "major.minor.milli" or "major.minor" or "major", 220 * where major, minor, milli, micro are non-negative numbers 266 * @param major major version, non-negative number <= 255. 273 public static VersionInfo getInstance(int major, int minor, int milli, in getInstance() argument 278 if (major < 0 || major > 255 || minor < 0 || minor > 255 || in getInstance() 282 int version = getInt(major, minor, milli, micro); in getInstance() 297 * Equivalent to getInstance(major, minor, milli, 0). 298 * @param major major version, non-negative number <= 255. [all …]
|
/external/clang/test/Driver/ |
D | msc-version.c | 16 …patibility-version=14 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR 18 // CHECK-MSC-VERSION-MAJOR: _MSC_BUILD 1 19 // CHECK-MSC-VERSION-MAJOR: _MSC_FULL_VER 140000000 20 // CHECK-MSC-VERSION-MAJOR: _MSC_VER 1400 22 …y-version=15.00 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR-MINOR 24 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_BUILD 1 25 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_FULL_VER 150000000 26 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_VER 1500 28 ….00.20706 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR-MINOR-BUILD 30 // CHECK-MSC-VERSION-MAJOR-MINOR-BUILD: _MSC_BUILD 1 [all …]
|
/external/apache-http/src/org/apache/http/ |
D | ProtocolVersion.java | 47 * protocol name, major version number, and minor version number. 69 /** Major version number of the protocol */ 70 protected final int major; field in ProtocolVersion 80 * @param major the major version number of the protocol 83 public ProtocolVersion(String protocol, int major, int minor) { in ProtocolVersion() argument 88 if (major < 0) { in ProtocolVersion() 90 ("Protocol major version number must not be negative."); in ProtocolVersion() 97 this.major = major; in ProtocolVersion() 111 * Returns the major version number of the protocol. 113 * @return the major version number. [all …]
|
D | HttpVersion.java | 69 * @param major the major version number of the HTTP protocol 72 * @throws IllegalArgumentException if either major or minor version number is negative 74 public HttpVersion(int major, int minor) { in HttpVersion() argument 75 super(HTTP, major, minor); in HttpVersion() 82 * @param major the major version 87 public ProtocolVersion forVersion(int major, int minor) { in forVersion() argument 89 if ((major == this.major) && (minor == this.minor)) { in forVersion() 93 if (major == 1) { in forVersion() 101 if ((major == 0) && (minor == 9)) { in forVersion() 106 return new HttpVersion(major, minor); in forVersion()
|
/external/vulkan-validation-layers/loader/ |
D | CMakeLists.txt | 7 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/vulkan-${MAJOR}.def 8 …rate.py ${DisplayServer} win-def-file vulkan-${MAJOR}.dll all > ${CMAKE_CURRENT_BINARY_DIR}/vulkan… 52 …d_library(vulkan-${MAJOR} SHARED $<TARGET_OBJECTS:loader-opt> $<TARGET_OBJECTS:loader-norm> ${CMAK… 53 …set_target_properties(vulkan-${MAJOR} PROPERTIES LINK_FLAGS "/DEF:${CMAKE_CURRENT_BINARY_DIR}/vulk… 54 add_library(VKstatic.${MAJOR} STATIC $<TARGET_OBJECTS:loader-opt> $<TARGET_OBJECTS:loader-norm>) 55 set_target_properties(VKstatic.${MAJOR} PROPERTIES OUTPUT_NAME VKstatic.${MAJOR}) 56 target_link_libraries(vulkan-${MAJOR} shlwapi)
|
/external/dbus/dbus/ |
D | dbus-misc.c | 100 * The COMPILE TIME major version of libdbus, that is, the "X" in "X.Y.Z", 125 * significant byte, the major version in the next most significant byte, 150 * The libdbus full version number is "MAJOR.MINOR.MICRO" where the 152 * release of a MAJOR.MINOR series. The MINOR is an odd number for 155 * @param major_version_p pointer to return the major version, or #NULL 187 int major, minor, micro; in _dbus_misc_test() local 196 * typo (mixing up major and minor, that sort of thing). in _dbus_misc_test() 198 dbus_get_version (&major, &minor, µ); in _dbus_misc_test() 200 _dbus_assert (major == DBUS_MAJOR_VERSION); in _dbus_misc_test() 216 _dbus_assert (MAKE_VERSION (major, minor, micro) == DBUS_VERSION); in _dbus_misc_test() [all …]
|
/external/chromium-trace/catapult/third_party/coverage/ci/ |
D | install.ps1 | 15 (?<major>\d+) 58 return ([int]$matches.major, [int]$matches.minor, [int]$matches.micro, in ParsePythonVersion() 62 return ($version_obj.major, $version_obj.minor, $version_obj.build, "") in ParsePythonVersion() 67 $major, $minor, $micro, $prerelease = ParsePythonVersion $python_version in DownloadPython() variable 69 if (($major -le 2 -and $micro -eq 0) ` in DownloadPython() variable 70 -or ($major -eq 3 -and $minor -le 2 -and $micro -eq 0) ` in DownloadPython() variable 72 $dir = "$major.$minor" in DownloadPython() 73 $python_version = "$major.$minor$prerelease" in DownloadPython() 75 $dir = "$major.$minor.$micro" in DownloadPython() 79 if (($major -le 2) ` in DownloadPython() variable [all …]
|
/external/mesa3d/bin/ |
D | mklib | 108 echo ' -major N specifies major version number (default is 1)' 135 MAJOR=1 165 '-major') 167 MAJOR=$1 295 echo MAJOR is $MAJOR 385 OPTS="-Xlinker -Bsymbolic -shared -Wl,-soname,${LIBNAME}.so.${MAJOR}" 388 OPTS="-shared -Wl,-soname,${LIBNAME}.so.${MAJOR}" 412 VERSION="${MAJOR}.${MINOR}" 414 VERSION="${MAJOR}.${MINOR}.${PATCH}" 421 rm -f ${LIBNAME}.so.${MAJOR} [all …]
|
/external/webrtc/webrtc/base/ |
D | win32.h | 97 bool GetOsVersion(int* major, int* minor, int* build); 100 int major; in IsWindowsVistaOrLater() local 101 return (GetOsVersion(&major, NULL, NULL) && major >= kWindowsVista); in IsWindowsVistaOrLater() 105 int major, minor; in IsWindowsXpOrLater() local 106 return (GetOsVersion(&major, &minor, NULL) && in IsWindowsXpOrLater() 107 (major >= kWindowsVista || in IsWindowsXpOrLater() 108 (major == kWindows2000 && minor >= 1))); in IsWindowsXpOrLater() 112 int major, minor; in IsWindows8OrLater() local 113 return (GetOsVersion(&major, &minor, NULL) && in IsWindows8OrLater() 114 (major > kWindowsVista || in IsWindows8OrLater() [all …]
|
D | macutils.cc | 86 bool GetOSVersion(int* major, int* minor, int* bugfix) { in GetOSVersion() argument 87 ASSERT(major && minor && bugfix); in GetOSVersion() 88 if (!GetGestalt(gestaltSystemVersion, major)) { in GetOSVersion() 91 if (*major < 0x1040) { in GetOSVersion() 92 *bugfix = *major & 0xF; in GetOSVersion() 93 *minor = (*major >> 4) & 0xF; in GetOSVersion() 94 *major = (*major >> 8); in GetOSVersion() 97 return GetGestalt(gestaltSystemVersionMajor, major) && in GetOSVersion() 103 int major = 0, minor = 0, bugfix = 0; in GetOSVersionName() local 104 if (!GetOSVersion(&major, &minor, &bugfix)) { in GetOSVersionName() [all …]
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | AbstractTestLog.java | 17 * Returns true if ICU_Version < major.minor. 19 static public boolean isICUVersionBefore(int major, int minor) { in isICUVersionBefore() argument 20 return isICUVersionBefore(major, minor, 0); in isICUVersionBefore() 24 * Returns true if ICU_Version < major.minor.milli. 26 static public boolean isICUVersionBefore(int major, int minor, int milli) { in isICUVersionBefore() argument 27 return VersionInfo.ICU_VERSION.compareTo(VersionInfo.getInstance(major, minor, milli)) < 0; in isICUVersionBefore() 31 * Returns true if ICU_Version >= major.minor. 33 static public boolean isICUVersionAtLeast(int major, int minor) { in isICUVersionAtLeast() argument 34 return isICUVersionAtLeast(major, minor, 0); in isICUVersionAtLeast() 38 * Returns true if ICU_Version >= major.minor.milli. [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | AbstractTestLog.java | 18 * Returns true if ICU_Version < major.minor. 20 static public boolean isICUVersionBefore(int major, int minor) { in isICUVersionBefore() argument 21 return isICUVersionBefore(major, minor, 0); in isICUVersionBefore() 25 * Returns true if ICU_Version < major.minor.milli. 27 static public boolean isICUVersionBefore(int major, int minor, int milli) { in isICUVersionBefore() argument 28 return VersionInfo.ICU_VERSION.compareTo(VersionInfo.getInstance(major, minor, milli)) < 0; in isICUVersionBefore() 32 * Returns true if ICU_Version >= major.minor. 34 static public boolean isICUVersionAtLeast(int major, int minor) { in isICUVersionAtLeast() argument 35 return isICUVersionAtLeast(major, minor, 0); in isICUVersionAtLeast() 39 * Returns true if ICU_Version >= major.minor.milli. [all …]
|
/external/opencv3/modules/core/src/ |
D | cuda_info.cpp | 144 bool hasPtx(int major, int minor) const; 145 bool hasBin(int major, int minor) const; 146 bool hasEqualOrLessPtx(int major, int minor) const; 147 bool hasEqualOrGreaterPtx(int major, int minor) const; 148 bool hasEqualOrGreaterBin(int major, int minor) const; 172 bool CudaArch::hasPtx(int major, int minor) const in hasPtx() argument 174 return std::find(ptx.begin(), ptx.end(), major * 10 + minor) != ptx.end(); in hasPtx() 177 bool CudaArch::hasBin(int major, int minor) const in hasBin() argument 179 return std::find(bin.begin(), bin.end(), major * 10 + minor) != bin.end(); in hasBin() 182 bool CudaArch::hasEqualOrLessPtx(int major, int minor) const in hasEqualOrLessPtx() argument [all …]
|
/external/mesa3d/src/mesa/main/ |
D | version.c | 41 int major, minor; in override_version() local 48 n = sscanf(version, "%u.%u", &major, &minor); in override_version() 54 ctx->Version = major * 10 + minor; in override_version() 87 GLuint major, minor; in compute_version() local 183 major = 3; in compute_version() 187 major = 3; in compute_version() 191 major = 3; in compute_version() 195 major = 3; in compute_version() 199 major = 2; in compute_version() 203 major = 2; in compute_version() [all …]
|
/external/eigen/bench/ |
D | benchmark_suite | 3 echo "Fixed size 3x3, column-major, -DNDEBUG" 5 echo "Fixed size 3x3, column-major, with asserts" 7 echo "Fixed size 3x3, row-major, -DNDEBUG" 9 echo "Fixed size 3x3, row-major, with asserts" 11 echo "Dynamic size 20x20, column-major, -DNDEBUG" 13 echo "Dynamic size 20x20, column-major, with asserts" 15 echo "Dynamic size 20x20, row-major, -DNDEBUG" 17 echo "Dynamic size 20x20, row-major, with asserts"
|
/external/iproute2/man/man8/ |
D | tc-htb.8 | 10 major: 18 major:[minor] 20 major:minor 84 parent major:minor | root 89 handle major: 91 of a major number, followed by a colon. Optional, but very useful if classes 101 parent major:minor 105 classid major:minor 106 Like qdiscs, classes can be named. The major number must be equal to the 107 major number of the qdisc to which it belongs. Optional, but needed if this
|
/external/vixl/src/vixl/ |
D | compiler-intrinsics.h | 37 #define MAJOR 1000000 macro 40 #define GCC_VERSION_OR_NEWER(major, minor, patchlevel) \ argument 41 ((__GNUC__ * MAJOR + __GNUC_MINOR__ * MINOR + __GNUC_PATCHLEVEL__) >= \ 42 ((major) * MAJOR + (minor) * MINOR + (patchlevel))) 44 #define GCC_VERSION_OR_NEWER(major, minor, patchlevel) \ 45 ((__GNUC__ * MAJOR + __GNUC_MINOR__ * MINOR) >= \ 46 ((major) * MAJOR + (minor) * MINOR + (patchlevel))) 48 #define GCC_VERSION_OR_NEWER(major, minor, patchlevel) 0 62 // https://gcc.gnu.org/onlinedocs/gcc-$MAJOR.$MINOR.$PATCHLEVEL/gcc//Other-Builtins.html
|