Searched defs:minor (Results 1 - 25 of 196) sorted by relevance

12345678

/external/chromium_org/third_party/mesa/src/
H A DAndroid.common.mk38 minor := $(word 2, $(subst ., , $(PLATFORM_VERSION))) macro
40 -DANDROID_VERSION=0x0$(major)0$(minor)
/external/mesa3d/
H A DAndroid.common.mk38 minor := $(word 2, $(subst ., , $(PLATFORM_VERSION))) macro
40 -DANDROID_VERSION=0x0$(major)0$(minor)
/external/chromium_org/gpu/gles2_conform_support/
H A Dgles2_conform_support.c13 EGLint major, minor; local
18 eglInitialize(eglDisplay, &major, &minor);
/external/bluetooth/bluedroid/bta/include/
H A Dutl.h46 UINT8 minor; member in struct:__anon849
128 ** BTA_UTL_SET_COD_MAJOR_MINOR, - overwrite major, minor class
131 ** BTA_UTL_SET_COD_ALL - overwrite major, minor, set the bits in service class
132 ** BTA_UTL_INIT_COD - overwrite major, minor, and service class
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dgenversion.c39 int major, minor, subminor, patchlevel, matched; local
46 matched = sscanf(PACKAGE_VERSION, "%d.%d.%d.%d", &major, &minor, &subminor,
67 fprintf(out, "%%define __YASM_MINOR__ %d\n", minor);
74 minor, subminor, patchlevel);
/external/harfbuzz_ng/test/api/
H A Dtest-version.c35 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/apache-http/src/org/apache/http/
H A DHttpVersion.java65 * @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) { argument
70 super(HTTP, major, minor);
78 * @param minor the minor version
82 public ProtocolVersion forVersion(int major, int minor) { argument
84 if ((major == this.major) && (minor == this.minor)) {
[all...]
H A DProtocolVersion.java47 * protocol name, major version number, and minor version number.
68 protected final int minor; field in class:ProtocolVersion
76 * @param minor the minor version number of the protocol
78 public ProtocolVersion(String protocol, int major, int minor) { argument
87 if (minor < 0) {
89 ("Protocol minor version number may not be negative");
93 this.minor = minor;
115 * Returns the minor versio
139 forVersion(int major, int minor) argument
[all...]
/external/chromium/net/http/
H A Dhttp_version.h13 // 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) { } argument
54 uint32 value_; // Packed as <major>:<minor>
/external/chromium_org/net/http/
H A Dhttp_version.h12 // 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) { } argument
53 uint32 value_; // Packed as <major>:<minor>
/external/clang/lib/Basic/
H A DVersionTuple.cpp11 // the form major[.minor[.subminor]].
58 unsigned major = 0, minor = 0, micro = 0; local
68 // If we're not done, parse the minor version, \.[0-9]+
71 if (parseInt(input, minor)) return true;
74 *this = VersionTuple(major, minor);
86 *this = VersionTuple(major, minor, micro);
/external/clang/test/CodeGen/
H A D2007-09-12-PragmaPack.c15 uint8_t minor; member in struct:__anon16717
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_version.h49 Uint8 minor; member in struct:SDL_version
60 (X)->minor = SDL_MINOR_VERSION; \
/external/smack/src/com/kenai/jbosh/
H A DAttrVersion.java45 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) {
128 * Returns the 'minor' portion of the version number.
130 * @return minor digits only
133 return minor;
153 } else if (minor < other.minor) {
[all...]
/external/blktrace/
H A Dverify_blkparse.c13 int major, minor, cpu, nr, alias; local
36 if (sscanf(p, "%3d,%3d %2d %8d %lf", &major, &minor, &cpu, &seq, &this_time) != 5)
/external/chromium_org/base/
H A Dsys_info_mac.cc27 int32 major, minor, bugfix; local
28 OperatingSystemVersionNumbers(&major, &minor, &bugfix);
29 return base::StringPrintf("%d.%d.%d", major, minor, bugfix);
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java192 int minor;
194 minor = Integer.parseInt(buffer.substringTrimmed(i, blank));
197 "Invalid protocol minor version number: " +
203 return createProtocolVersion(major, minor);
213 * @param minor the minor version number, for example 0 in HTTP/1.0
217 protected ProtocolVersion createProtocolVersion(int major, int minor) { argument
218 return protocol.forVersion(major, minor);
243 // this works only for single-digit major and minor version
/external/bluetooth/bluedroid/bta/sys/
H A Dutl.c181 ** BTA_UTL_SET_COD_MAJOR_MINOR, - overwrite major, minor class
184 ** BTA_UTL_SET_COD_ALL - overwrite major, minor, set the bits in service class
185 ** BTA_UTL_INIT_COD - overwrite major, minor, and service class
194 UINT8 minor, major; local
199 BTM_COD_MINOR_CLASS(minor, dev );
205 minor = p_cod->minor & BTM_COD_MINOR_CLASS_MASK;
221 minor = p_cod->minor & BTM_COD_MINOR_CLASS_MASK;
228 minor
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx.c103 int major, minor, patch; local
108 if (!XAppleDRIQueryVersion(dpy, &major, &minor, &patch))
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dversion.c41 int major, minor; local
48 n = sscanf(version, "%u.%u", &major, &minor);
54 ctx->Version = major * 10 + minor;
87 GLuint major, minor; local
184 minor = 3;
188 minor = 2;
192 minor = 1;
196 minor = 0;
200 minor = 1;
204 minor
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkGraphics.cpp32 void SkGraphics::GetVersion(int32_t* major, int32_t* minor, int32_t* patch) { argument
36 if (minor) {
37 *minor = SKIA_VERSION_MINOR;
/external/chromium_org/tools/xdisplaycheck/
H A Dxdisplaycheck.cc90 int major = 2, minor = 0; local
91 if (XIQueryVersion(scoped_display.display(), &major, &minor) == BadRequest) {
/external/chromium_org/v8/test/cctest/
H A Dtest-version.cc39 void SetVersion(int major, int minor, int build, int patch, argument
42 Version::minor_ = minor;
52 static void CheckVersion(int major, int minor, int build, argument
60 SetVersion(major, minor, build, patch, candidate, "");
68 SetVersion(major, minor, build, patch, candidate, soname);
/external/e2fsprogs/lib/ext2fs/
H A Dfinddev.c168 int major, minor; local
174 fprintf(stderr, "\t: %s major minor\n", argv[0]);
189 minor = strtoul(argv[2], &tmp, 0);
191 fprintf(stderr, errmsg, "minor number", argv[2]);
194 device = makedev(major, minor);
196 major, minor);
/external/eigen/Eigen/src/Eigen2Support/
H A DMinor.h18 * \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()
47 CoeffReadCost = _MatrixTypeNested::CoeffReadCost // minor is used typically on tiny matrices,
90 * \return an expression of the (\a row, \a col)-minor of *this,
101 MatrixBase<Derived>::minor(Index row, Index col) function in class:Eigen::MatrixBase
107 * This is the const version of minor(). */
110 MatrixBase<Derived>::minor(Inde function in class:Eigen::MatrixBase
[all...]

Completed in 746 milliseconds

12345678