HomeSort by relevance Sort by last modified time
    Searched full:minor (Results 1 - 25 of 2887) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/
VERSION 2 MINOR=0
  /hardware/invensense/60xx/mlsdk/mllite/
dmpconfig.txt 2 minor version = 0
  /external/ltrace/
.gitignore 40 testsuite/ltrace.minor/attach-process
41 testsuite/ltrace.minor/count-record
42 testsuite/ltrace.minor/demangle
43 testsuite/ltrace.minor/libdl-simple
44 testsuite/ltrace.minor/print-instruction-pointer
45 testsuite/ltrace.minor/time-record-T
46 testsuite/ltrace.minor/time-record-tt
47 testsuite/ltrace.minor/time-record-ttt
48 testsuite/ltrace.minor/trace-clone
49 testsuite/ltrace.minor/trace-exe
    [all...]
  /external/harfbuzz_ng/test/api/
test-version.c 35 unsigned int major, minor, micro; local
38 hb_version (&major, &minor, &micro);
41 g_assert_cmpint (minor, ==, HB_VERSION_MINOR);
44 s = g_strdup_printf ("%u.%u.%u", major, minor, micro);
49 g_assert (HB_VERSION_ATLEAST (major, minor, micro));
51 g_assert (HB_VERSION_ATLEAST (major-1, minor, micro));
52 if (minor)
53 g_assert (HB_VERSION_ATLEAST (major, minor-1, micro));
55 g_assert (HB_VERSION_ATLEAST (major, minor, micro-1));
56 g_assert (!HB_VERSION_ATLEAST (major+1, minor, micro))
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 16 * \class Minor
18 * \brief Expression of a minor
20 * \param MatrixType the type of the object in which we are taking a minor
22 * This class represents an expression of a minor. It is the return
23 * type of MatrixBase::minor() and most of the time this is the only way it
26 * \sa MatrixBase::minor()
31 struct traits<Minor<MatrixType> >
47 CoeffReadCost = _MatrixTypeNested::CoeffReadCost // minor is used typically on tiny matrices,
53 template<typename MatrixType> class Minor
54 : public MatrixBase<Minor<MatrixType>
101 MatrixBase<Derived>::minor(Index row, Index col) function in class:Eigen::MatrixBase
110 MatrixBase<Derived>::minor(Index row, Index col) const function in class:Eigen::MatrixBase
    [all...]
  /device/asus/fugu/recovery/
fw_version_check.c 36 uint16_t minor; member in struct:fip_version_block
44 uint16_t minor; member in struct:fip_version_block_chxx
131 * 00 SCU Boot Strap Firmware Minor Revision Low
132 * 01 SCU Boot Strap Firmware Minor Revision High
136 * 04 SCU Firmware Minor Revision Low
137 * 05 SCU Firmware Minor Revision High
141 * 08 IA Firmware Minor Revision Low
142 * 09 IA Firmware Minor Revision High
146 * 12 Validation Hooks Firmware Minor Revision Low
147 * 13 Validation Hooks Firmware Minor Revision Hig
    [all...]
  /external/chromium_org/chrome/app/version_assembly/
version_assembly_manifest.template 4 name='@MAJOR@.@MINOR@.@BUILD@.@PATCH@'
5 version='@MAJOR@.@MINOR@.@BUILD@.@PATCH@'
chrome_exe_manifest.template 6 name='@MAJOR@.@MINOR@.@BUILD@.@PATCH@'
7 version='@MAJOR@.@MINOR@.@BUILD@.@PATCH@' language='*'/>
  /external/kernel-headers/original/uapi/linux/
kdev_t.h 6 Some programs want their definitions of MAJOR and MINOR and MKDEV
10 #define MINOR(dev) ((dev) & 0xff)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
kdev_t.h 5 Some programs want their definitions of MAJOR and MINOR and MKDEV
9 #define MINOR(dev) ((dev) & 0xff)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
kdev_t.h 5 Some programs want their definitions of MAJOR and MINOR and MKDEV
9 #define MINOR(dev) ((dev) & 0xff)
  /external/chromium_org/net/http/
http_version.h 12 // Wrapper for an HTTP (major,minor) version pair.
15 // Default constructor (major=0, minor=0).
18 // Build from unsigned major/minor pair.
19 HttpVersion(uint16 major, uint16 minor) : value_(major << 16 | minor) { }
26 // Minor version number.
53 uint32 value_; // Packed as <major>:<minor>
  /external/llvm/lib/Target/Mips/
MipsMSAInstrFormats.td 40 class MSA_BIT_B_FMT<bits<3> major, bits<6> minor>: MSAInst {
50 let Inst{5-0} = minor;
53 class MSA_BIT_H_FMT<bits<3> major, bits<6> minor>: MSAInst {
63 let Inst{5-0} = minor;
66 class MSA_BIT_W_FMT<bits<3> major, bits<6> minor>: MSAInst {
76 let Inst{5-0} = minor;
79 class MSA_BIT_D_FMT<bits<3> major, bits<6> minor>: MSAInst {
89 let Inst{5-0} = minor;
92 class MSA_2R_FILL_FMT<bits<8> major, bits<2> df, bits<6> minor>: MSAInst {
100 let Inst{5-0} = minor;
    [all...]
  /external/libedit/src/
shlib_version 5 minor=1
  /external/chromium_org/ios/consumer/base/
util.mm 10 bool IsRunningOnOrLater(int major, int minor, int bug_fix) {
11 return base::ios::IsRunningOnOrLater(major, minor, bug_fix);
  /external/clang/include/clang/Basic/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
25 /// \brief Represents a version number in the form major[.minor[.subminor]].
28 unsigned Minor : 31;
35 : Major(0), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false) { }
38 : Major(Major), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false)
41 explicit VersionTuple(unsigned Major, unsigned Minor)
42 : Major(Major), Minor(Minor), Subminor(0), HasMinor(true),
46 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor)
47 : Major(Major), Minor(Minor), Subminor(Subminor), HasMinor(true),
    [all...]
  /external/skia/src/gpu/gl/
GrGLUtil.cpp 56 bool get_gl_version_for_mesa(int mesaMajorVersion, int* major, int* minor) {
64 *minor = mesaMajorVersion - 1;
68 *minor = 1;
72 *minor = 0;
76 *minor = 1;
80 *minor = 3;
106 int major, minor; local
109 int n = sscanf(versionString, "%d.%d", &major, &minor);
116 n = sscanf(versionString, "OpenGL ES-%c%c %d.%d", profile, profile+1, &major, &minor);
123 n = sscanf(versionString, "OpenGL ES %d.%d", &major, &minor);
131 int major, minor, mesaMajor, mesaMinor; local
146 int major, minor; local
185 int major, minor; local
    [all...]
  /external/smack/src/com/kenai/jbosh/
AttrVersion.java 43 * Minor portion of the version.
45 private final int minor; field in class:AttrVersion
59 "Illegal ver attribute value (not in major.minor form): "
79 minor = Integer.parseInt(minorStr);
82 "Could not parse ver attribute value (minor ver): "
86 if (minor < 0) {
88 "Minor version may not be < 0"));
128 * Returns the 'minor' portion of the version number.
130 * @return minor digits only
133 return minor;
    [all...]
  /external/libcxx/
CREDITS.TXT 13 D: Minor patches and Linux fixes.
17 D: Visibility fixes, minor FreeBSD portability patches.
21 D: Minor fix.
42 D: Minor patches and bug fixes.
53 D: Minor patches and bug fixes.
65 D: Minor patches to is_convertible.
69 D: Minor patches and Linux fixes.
73 D: Minor patches and musl port.
84 D: Minor patches, mostly related to constexpr
91 D: Minor patches
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/
CREDITS.TXT 13 D: Minor patches and Linux fixes.
17 D: Visibility fixes, minor FreeBSD portability patches.
21 D: Minor fix.
42 D: Minor patches and bug fixes.
53 D: Minor patches and bug fixes.
65 D: Minor patches to is_convertible.
69 D: Minor patches and Linux fixes.
73 D: Minor patches and musl port.
84 D: Minor patches, mostly related to constexpr
91 D: Minor patches
    [all...]
  /external/chromium_org/base/ios/
ios_util.mm 10 // Return a 3 elements array containing the major, minor and bug fix version of
31 bool IsRunningOnOrLater(int32 major, int32 minor, int32 bug_fix) {
33 int32 version[] = { major, minor, bug_fix };
  /external/clang/test/Driver/
msc-version.c 25 // RUN: %clang -target i686-windows -fms-compatibility -fmsc-version=17.00 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR-MINOR
27 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_BUILD 1
28 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_FULL_VER 170000000
29 // CHECK-MSC-VERSION-MAJOR-MINOR: _MSC_VER 1700
31 // RUN: %clang -target i686-windows -fms-compatibility -fmsc-version=15.00.20706 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR-MINOR-BUILD
33 // CHECK-MSC-VERSION-MAJOR-MINOR-BUILD: _MSC_BUILD 1
34 // CHECK-MSC-VERSION-MAJOR-MINOR-BUILD: _MSC_FULL_VER 150020706
35 // CHECK-MSC-VERSION-MAJOR-MINOR-BUILD: _MSC_VER 1500
37 // RUN: %clang -target i686-windows -fms-compatibility -fmsc-version=15.00.20706.01 -dM -E - </dev/null -o - | FileCheck %s -check-prefix CHECK-MSC-VERSION-MAJOR-MINOR-BUILD-PATCH
39 // CHECK-MSC-VERSION-MAJOR-MINOR-BUILD-PATCH: _MSC_BUILD
    [all...]
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl.attrib 8 dir minor out
9 len minor sizeof(EGLint)
  /external/chromium_org/gpu/gles2_conform_support/
gles2_conform_support.c 13 EGLint major, minor; local
18 eglInitialize(eglDisplay, &major, &minor);
  /external/libnfc-nxp/src/
phFriNfc_MapTools.h 53 /* NFC Device Major and Minor Version numbers*/
54 /* !!CAUTION!! these needs to be updated periodically.Major and Minor version numbers
58 Minor VNo is 0 */
65 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
69 /* NFC Device Major and Minor Version numbers*/
70 /* !!CAUTION!! these needs to be updated periodically.Major and Minor version numbers
74 Minor VNo is 0 */
78 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/

Completed in 1243 milliseconds

1 2 3 4 5 6 7 8 91011>>