/external/clang/ |
version.py | 2 minor = '8' variable
|
/external/elfutils/ |
version.h | 35 #define _ELFUTILS_PREREQ(major, minor) \ 36 (_ELFUTILS_VERSION >= ((major) * 1000 + (minor)))
|
/external/harfbuzz_ng/test/api/ |
test-version.c | 35 unsigned int major, minor, micro; local 38 hb_version (&major, &minor, µ); 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/apache-http/src/org/apache/http/ |
HttpVersion.java | 70 * @param minor the minor 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) { 75 super(HTTP, major, minor); 83 * @param minor the minor version 87 public ProtocolVersion forVersion(int major, int minor) { 89 if ((major == this.major) && (minor == this.minor)) { [all...] |
ProtocolVersion.java | 47 * protocol name, major version number, and minor version number. 72 /** Minor version number of the protocol */ 73 protected final int minor; field in class:ProtocolVersion 81 * @param minor the minor version number of the protocol 83 public ProtocolVersion(String protocol, int major, int minor) { 92 if (minor < 0) { 94 ("Protocol minor version number may not be negative"); 98 this.minor = minor; [all...] |
/external/elfutils/config/ |
version.h.in | 35 #define _ELFUTILS_PREREQ(major, minor) \ 36 (_ELFUTILS_VERSION >= ((major) * 1000 + (minor)))
|
/libcore/support/src/test/java/libcore/tlswire/util/ |
TlsProtocolVersion.java | 32 public final int minor; field in class:TlsProtocolVersion 35 private TlsProtocolVersion(int major, int minor, String name) { 37 this.minor = minor; 41 public static TlsProtocolVersion valueOf(int major, int minor) { 43 switch (minor) { 54 return new TlsProtocolVersion(major, minor, major + "." + minor); 59 int minor = in.readUnsignedByte(); local 60 return TlsProtocolVersion.valueOf(major, minor); [all...] |
/external/harfbuzz_ng/src/ |
hb-version.h | 45 #define HB_VERSION_ATLEAST(major,minor,micro) \ 46 ((major)*10000+(minor)*100+(micro) <= \ 52 unsigned int *minor, 60 unsigned int minor,
|
hb-version.h.in | 45 #define HB_VERSION_ATLEAST(major,minor,micro) \ 46 ((major)*10000+(minor)*100+(micro) <= \ 52 unsigned int *minor, 60 unsigned int minor,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/ |
version.h | 57 /** The minor version of PA. \since 0.9.15 */ 65 #define PA_CHECK_VERSION(major,minor,micro) \ 67 (PA_MAJOR == (major) && PA_MINOR > (minor)) || \ 68 (PA_MAJOR == (major) && PA_MINOR == (minor) && PA_MICRO >= (micro)))
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/ |
version.h | 57 /** The minor version of PA. \since 0.9.15 */ 65 #define PA_CHECK_VERSION(major,minor,micro) \ 67 (PA_MAJOR == (major) && PA_MINOR > (minor)) || \ 68 (PA_MAJOR == (major) && PA_MINOR == (minor) && PA_MICRO >= (micro)))
|
/external/libgdx/gdx/src/com/badlogic/gdx/ |
Version.java | 25 /** the current version of libgdx as a String in the major.minor.revision format **/ 31 /** the current minor version of libgdx **/ 32 public static final int MINOR; 41 MINOR = v.length < 2 ? 0 : Integer.valueOf(v[1]); 50 public static boolean isHigher (int major, int minor, int revision) { 51 return isHigherEqual(major, minor, revision+1); 54 public static boolean isHigherEqual (int major, int minor, int revision) { 57 if (MINOR != minor) 58 return MINOR > minor [all...] |
/cts/tools/dasm/src/java_cup/ |
version.java | 9 * Version numbers used here are broken into 3 parts: major, minor, and 10 * update, and are written as v<major>.<minor><update> (e.g. v0.9a). 12 * part of the system. Minor numbers for each public release or 32 /** The minor version number. */ 33 public static final int minor = 9; field in class:version
|
/external/chromium-trace/catapult/third_party/coverage/coverage/ |
version.py | 11 def _make_version(major, minor, micro, releaselevel, serial): 14 version = "%d.%d" % (major, minor) 23 def _make_url(major, minor, micro, releaselevel, serial): 28 url += "/en/coverage-" + _make_version(major, minor, micro, releaselevel, serial)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
QRDecompositionImpl.java | 85 * reflectors by repeating the following operations to each minor 86 * A(minor,minor) of A: 88 for (int minor = 0; minor < FastMath.min(m, n); minor++) { 90 final double[] qrtMinor = qrt[minor]; 93 * Let x be the first column of the minor, and a^2 = |x|^2. 94 * x will be in the positions qr[minor][minor] through qr[m][minor] [all...] |
/external/dbus/dbus/ |
dbus-misc.c | 108 * The COMPILE TIME minor version of libdbus, that is, the "Y" in "X.Y.Z", 126 * the minor version in the third most significant, and the micro version in the 150 * The libdbus full version number is "MAJOR.MINOR.MICRO" where the 151 * MINOR changes if API is added, and the MICRO changes with each 152 * release of a MAJOR.MINOR series. The MINOR is an odd number for 156 * @param minor_version_p pointer to return the minor version, or #NULL 187 int major, minor, micro; local 196 * typo (mixing up major and minor, that sort of thing). 198 dbus_get_version (&major, &minor, µ) [all...] |
/bionic/tests/ |
sys_sysmacros_test.cpp | 29 TEST(sys_sysmacros, minor) { 30 ASSERT_EQ(0xaabbccddUL, minor(0x12345aabbcc678dd));
|
/device/asus/fugu/recovery/ |
fw_version_check.cpp | 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...] |
/hardware/intel/common/libva/va/ |
va_compat.h | 85 #define VA_CPP_HELPER_ALIAS(func, major, minor, micro) \ 86 VA_CPP_HELPER_ALIAS_(func, major, minor, micro, "@") 87 #define VA_CPP_HELPER_ALIAS_DEFAULT(func, major, minor, micro) \ 88 VA_CPP_HELPER_ALIAS_(func, major, minor, micro, "@@") 89 #define VA_CPP_HELPER_ALIAS_(func, major, minor, micro, binding) \ 90 asm(".symver " #func "_" #major "_" #minor "_" #micro ", " \ 91 #func binding "VA_API_" #major "." #minor "." #micro)
|
/development/ndk/platforms/android-3/include/linux/ |
miscdevice.h | 48 int minor; member in struct:miscdevice 56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
|
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/ |
miscdevice.h | 48 int minor; member in struct:miscdevice 56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
|
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/ |
miscdevice.h | 48 int minor; member in struct:miscdevice 56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
|
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/ |
miscdevice.h | 48 int minor; member in struct:miscdevice 56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
|
/prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/ |
miscdevice.h | 48 int minor; member in struct:miscdevice 56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
|
/prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/ |
miscdevice.h | 48 int minor; member in struct:miscdevice 56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
|