HomeSort by relevance Sort by last modified time
    Searched full:minor (Results 1 - 25 of 2515) 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/kernel-headers/original/linux/
kdev_t.h 8 #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK))
12 sprintf((buffer), "%u:%u\n", MAJOR(dev), MINOR(dev))
16 sprintf(buffer, "%u:%u", MAJOR(dev), MINOR(dev)); \
23 return MAJOR(dev) < 256 && MINOR(dev) < 256;
28 return (MAJOR(dev) << 8) | MINOR(dev);
44 unsigned minor = MINOR(dev); local
45 return (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
51 unsigned minor = (dev & 0xff) | ((dev >> 12) & 0xfff00) local
    [all...]
miscdevice.h 37 int minor; member in struct:miscdevice
48 #define MODULE_ALIAS_MISCDEV(minor) \
50 "-" __stringify(minor))
  /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_CHECK (major, minor, micro));
50 g_assert (HB_VERSION_CHECK (major+1, minor, micro));
51 g_assert (HB_VERSION_CHECK (major, minor+1, micro));
52 g_assert (HB_VERSION_CHECK (major, minor, micro+1));
54 g_assert (!HB_VERSION_CHECK (major-1, minor, micro));
55 if (minor)
    [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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-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)
  /external/chromium/net/http/
http_version.h 13 // Wrapper for an HTTP (major,minor) version pair.
16 // Default constructor (major=0, minor=0).
19 // Build from unsigned major/minor pair.
20 HttpVersion(uint16 major, uint16 minor) : value_(major << 16 | minor) { }
27 // Minor version number.
54 uint32 value_; // Packed as <major>:<minor>
  /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/chromium_org/third_party/skia/src/gpu/gl/
GrGLUtil.cpp 54 bool get_gl_version_for_mesa(int mesaMajorVersion, int* major, int* minor) {
62 *minor = mesaMajorVersion - 1;
66 *minor = 1;
70 *minor = 0;
74 *minor = 1;
100 int major, minor; local
103 int n = sscanf(versionString, "%d.%d", &major, &minor);
110 n = sscanf(versionString, "OpenGL ES-%c%c %d.%d", profile, profile+1, &major, &minor);
117 n = sscanf(versionString, "OpenGL ES %d.%d", &major, &minor);
125 int major, minor, mesaMajor, mesaMinor local
136 int major, minor; local
175 int major, minor; local
    [all...]
  /external/skia/src/gpu/gl/
GrGLUtil.cpp 54 bool get_gl_version_for_mesa(int mesaMajorVersion, int* major, int* minor) {
62 *minor = mesaMajorVersion - 1;
66 *minor = 1;
70 *minor = 0;
74 *minor = 1;
100 int major, minor; local
103 int n = sscanf(versionString, "%d.%d", &major, &minor);
110 n = sscanf(versionString, "OpenGL ES-%c%c %d.%d", profile, profile+1, &major, &minor);
117 n = sscanf(versionString, "OpenGL ES %d.%d", &major, &minor);
125 int major, minor, mesaMajor, mesaMinor local
136 int major, minor; local
175 int major, minor; local
    [all...]
  /external/clang/include/clang/Basic/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
24 /// \brief Represents a version number in the form major[.minor[.subminor]].
27 unsigned Minor : 31;
34 : Major(0), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false) { }
37 : Major(Major), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false)
40 explicit VersionTuple(unsigned Major, unsigned Minor)
41 : Major(Major), Minor(Minor), Subminor(0), HasMinor(true),
45 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor)
46 : Major(Major), Minor(Minor), Subminor(Subminor), HasMinor(true),
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_exe_version.rc.version 7 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
8 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
25 VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
29 VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
  /external/chromium_org/ios/consumer/base/
util.mm 14 bool IsRunningOnOrLater(int major, int minor, int bug_fix) {
15 return base::ios::IsRunningOnOrLater(major, minor, bug_fix);
  /external/apache-http/src/org/apache/http/
HttpVersion.java 65 * @param minor the minor version number of the HTTP protocol
67 * @throws IllegalArgumentException if either major or minor version number is negative
69 public HttpVersion(int major, int minor) {
70 super(HTTP, major, minor);
78 * @param minor the minor version
82 public ProtocolVersion forVersion(int major, int minor) {
84 if ((major == this.major) && (minor == this.minor)) {
    [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...]
  /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.
34 D: Minor patches and bug fixes.
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.
80 D: Minor patches, mostly related to constexp
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
minors.h 5 * MINOR numbers
25 #define SNDRV_MINOR_CARD(minor) ((minor) >> 5)
26 #define SNDRV_MINOR_DEVICE(minor) ((minor) & 0x001f)
42 /* same as first respective minor number to make minor allocation easier */
73 #define SNDRV_MINOR_OSS_CARD(minor) ((minor) >> 4)
74 #define SNDRV_MINOR_OSS_DEVICE(minor) ((minor) & 0x000f
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
minors.h 5 * MINOR numbers
25 #define SNDRV_MINOR_CARD(minor) ((minor) >> 5)
26 #define SNDRV_MINOR_DEVICE(minor) ((minor) & 0x001f)
42 /* same as first respective minor number to make minor allocation easier */
73 #define SNDRV_MINOR_OSS_CARD(minor) ((minor) >> 4)
74 #define SNDRV_MINOR_OSS_DEVICE(minor) ((minor) & 0x000f
    [all...]
  /external/chromium/base/third_party/dmg_fp/
README.chromium 13 - made some minor changes to allow clean compilation under g++ -Wall, see
15 - made some minor changes to build on 64-bit, see gcc_64_bit.patch.
16 - made minor changes for -Wextra for Mac build, see mac_wextra.patch
  /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 };
  /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);

Completed in 691 milliseconds

1 2 3 4 5 6 7 8 91011>>