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

1 2 3 4 5 6 7 8 91011>>

  /hardware/invensense/mlsdk/mllite/
dmpconfig.txt 0 major version = 1
  /external/eigen/doc/snippets/
Tutorial_Map_rowmajor.cpp 3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl;
4 cout << "Row-major:\n" << Map<Matrix<int,2,4,RowMajor> >(array) << endl;
5 cout << "Row-major using stride:\n" <<
TopicStorageOrders_example.cpp 8 cout << "In memory (column-major):" << endl;
14 cout << "In memory (row-major):" << endl;
  /external/harfbuzz_ng/test/api/
test-version.c 35 unsigned int major, minor, micro; local
38 hb_version (&major, &minor, &micro);
40 g_assert_cmpint (major, ==, HB_VERSION_MAJOR);
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));
53 if (major)
54 g_assert (!HB_VERSION_CHECK (major-1, minor, micro))
    [all...]
  /external/kernel-headers/original/linux/
kdev_t.h 7 #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS))
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);
43 unsigned major = MAJOR(dev); local
45 return (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
50 unsigned major = (dev & 0xfff00) >> 8; local
52 return MKDEV(major, minor)
    [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
8 #define MAJOR(dev) ((dev)>>8)
  /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
8 #define MAJOR(dev) ((dev)>>8)
  /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
8 #define MAJOR(dev) ((dev)>>8)
  /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) { }
22 // Major version number.
54 uint32 value_; // Packed as <major>:<minor>
  /external/llvm/test/YAMLParser/
spec-02-16.data 5 Mark set a major league
  /external/eigen/bench/
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/clang/include/clang/Basic/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
24 /// \brief Represents a version number in the form major[.minor[.subminor]].
26 unsigned Major;
34 : Major(0), Minor(0), Subminor(0), HasMinor(false), HasSubminor(false) { }
36 explicit VersionTuple(unsigned Major)
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),
    [all...]
  /external/smack/src/com/kenai/jbosh/
AttrVersion.java 38 * Major portion of the version.
40 private final int major; field in class:AttrVersion
59 "Illegal ver attribute value (not in major.minor form): "
65 major = Integer.parseInt(majorStr);
68 "Could not parse ver attribute value (major ver): "
72 if (major < 0) {
74 "Major version may not be < 0"));
119 * Returns the 'major' portion of the version number.
121 * @return major digits only
124 return major;
    [all...]
  /external/apache-http/src/org/apache/http/
HttpVersion.java 64 * @param major the major 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);
77 * @param major the major version
82 public ProtocolVersion forVersion(int major, int minor) {
84 if ((major == this.major) && (minor == this.minor))
    [all...]
  /external/eigen/doc/
I15_StorageOrders.dox 5 There are two different storage orders for matrices and two-dimensional arrays: column-major and row-major.
14 \section TopicStorageOrdersIntro Column-major and row-major storage
19 We say that a matrix is stored in \b row-major order if it is stored row by row. The entire first row is
30 If this matrix is stored in row-major order, then the entries are laid out in memory as follows:
34 On the other hand, a matrix is stored in \b column-major order if it is stored column by column, starting with
36 column-major order, it is laid out as follows:
59 parameter is set to \c RowMajor, then the matrix or array is stored in row-major order; if it is set to
60 \c ColMajor, then it is stored in column-major order. This mechanism is used in the above Eigen program t
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitversion.h.in 35 #define WEBKIT_CHECK_VERSION(major, minor, micro) \
36 (WEBKIT_MAJOR_VERSION > (major) || \
37 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \
38 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \
51 webkit_check_version (guint major, guint minor, guint micro);
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl.attrib 6 dir major out
7 len major sizeof(EGLint)
  /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
57 Major VNo is 1,
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
73 Major VNo is 1,
78 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
  /external/skia/src/gpu/gl/
GrGLUtil.cpp 70 int major, minor; local
73 int n = sscanf(versionString, "%d.%d", &major, &minor);
81 &major, &minor);
88 n = sscanf(versionString, "OpenGL ES %d.%d", &major, &minor);
101 int major, minor; local
103 int n = sscanf(versionString, "%d.%d", &major, &minor);
105 return GR_GL_VER(major, minor);
110 &major, &minor);
112 return GR_GL_VER(major, minor);
115 n = sscanf(versionString, "OpenGL ES %d.%d", &major, &minor)
129 int major, minor; local
    [all...]
  /sdk/emulator/opengl/host/libs/renderControl_dec/
renderControl.attrib 6 dir major out
7 len major sizeof(EGLint)
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
mcVersionHelper.h 41 /** Create a version number given major and minor numbers. */
42 #define MC_MAKE_VERSION(major,minor) \
43 ( (((major) & 0xffff) << 16) |\
46 /** Get major version number from complete version. */
67 #define MC_CHECK_VERSION_EQUALS(comp, major, minor) \
68 ASSERT_VERSION(major, ==, comp, MAJOR); \
74 ASSERT_VERSION(majorRequired, ==, comp, MAJOR); \
80 * @param majorRequired Required major version of interface provider.
105 uint32_t major = MC_GET_MAJOR_VERSION(version);
    [all...]
  /dalvik/dx/tests/003-magic-version-access/
info.txt 8 * major / minor version numbers
  /external/harfbuzz_ng/src/
hb-version.h 45 #define HB_VERSION_CHECK(major,minor,micro) \
46 ((major)*10000+(minor)*100+(micro) >= \
51 hb_version (unsigned int *major,
59 hb_version_check (unsigned int major,
hb-version.h.in 45 #define HB_VERSION_CHECK(major,minor,micro) \
46 ((major)*10000+(minor)*100+(micro) >= \
51 hb_version (unsigned int *major,
59 hb_version_check (unsigned int major,
  /external/iptables/extensions/
libxt_CLASSIFY.man 4 Set the major and minor class value. The values are always interpreted as

Completed in 2539 milliseconds

1 2 3 4 5 6 7 8 91011>>