Searched refs:minor (Results 1 - 25 of 38) sorted by relevance

12

/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
H A Ddisklabel.h43 * We use the highest bit of the minor number for the partition number.
48 #define DISKUNIT(dev) ((minor(dev) / OLDMAXPARTITIONS) % __I386_MAXDISKS)
49 #define DISKPART(dev) ((minor(dev) % OLDMAXPARTITIONS) + \
50 ((minor(dev) / (__I386_MAXDISKS * OLDMAXPARTITIONS)) * OLDMAXPARTITIONS))
/device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/common/
H A Dtegra_platform.c25 * Tegra macros defining all the SoC minor versions
33 * Tegra major, minor version helper macros
68 * Read the chip's minor version from the chip ID value
102 uint32_t minor = tegra_get_chipid_minor(); local
109 * The minor version number is used by simulation platforms
116 if (minor == TEGRA_MINOR_QT)
122 if (minor == TEGRA_MINOR_FPGA)
126 if ((minor > TEGRA_MINOR_FPGA) && (minor <= TEGRA_MINOR_EMULATION_MAX))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
H A Dversion.py109 (major, minor, patch, prerelease, prerelease_num) = \
113 self.version = tuple(map(string.atoi, [major, minor, patch]))
115 self.version = tuple(map(string.atoi, [major, minor]) + [0])
/device/linaro/bootloader/arm-trusted-firmware/plat/arm/css/drivers/sds/
H A Dsds_private.h19 #define MAKE_SDS_HEADER_VERSION(major, minor) \
20 (((((major) & 0xff) << SDS_HEADER_MINOR_VERSION_WIDTH) | ((minor) & 0xff)))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest___future__.py38 (major, minor, micro, level, serial) = t
40 a(isinstance(minor, int), "%s minor isn't int" % name)
H A Dtest_sys.py239 self.assertIsInstance(v.minor, int)
248 self.assertEqual(v[1], v.minor)
406 self.assertIsInstance(vi.minor, int)
411 self.assertEqual(vi[1], vi.minor)
H A Dtest_ssl.py138 major, minor, fix, patch, status = t
141 self.assertGreaterEqual(minor, 0)
142 self.assertLess(minor, 256)
150 self.assertTrue(s.startswith("OpenSSL {:d}.{:d}.{:d}".format(major, minor, fix)),
/device/linaro/bootloader/edk2/OvmfPkg/Include/Protocol/
H A DVirtioDevice.h25 #define VIRTIO_SPEC_REVISION(major,minor,revision) \
26 ((((major) & 0xFF) << 24) | (((minor) & 0xFF) << 16) | ((revision) & 0xFFFF))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
H A Dmsi.py44 major = minor = micro = level = serial = None
59 if name == 'PY_MINOR_VERSION': minor = value
64 short_version = major+"."+minor
79 current_version = "%s.%s.%s" % (major, minor, int(time.time()/3600/24))
120 } [major+minor]
131 docfile = 'python%s%s%s.chm' % (major, minor, docfile)
172 lib_file = os.path.join(srcdir, PCBUILD, "python%s%s.lib" % (major, minor))
173 def_file = os.path.join(srcdir, PCBUILD, "python%s%s.def" % (major, minor))
174 dll_file = "python%s%s.dll" % (major, minor)
175 mingw_lib = os.path.join(srcdir, PCBUILD, "libpython%s%s.a" % (major, minor))
[all...]
/device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/soc/t186/drivers/mce/
H A Dmce.c290 * version = minor(63:32) | major(31:0). Update context
291 * to return major and minor version number.
482 uint32_t major, minor; local
499 * Read the MCE firmware version and extract the major and minor
504 minor = (uint32_t)(version >> 32);
506 INFO("MCE Version - HW=%d:%d, SW=%d:%d\n", major, minor,
518 if (minor < TEGRA_ARI_VERSION_MINOR) {
519 ERROR("ARI minor version mismatch\n");
/device/linaro/bootloader/edk2/OvmfPkg/
H A Dcreate-release.py54 minor = max(4, min(7, gcc_version[1])) variable
55 TOOLCHAIN = 'GCC4' + str(minor)
/device/generic/goldfish-opengl/system/renderControl_enc/
H A DrenderControl_entry.cpp9 EGLint rcGetEGLVersion(EGLint* major, EGLint* minor);
59 EGLint rcGetEGLVersion(EGLint* major, EGLint* minor) argument
62 return ctx->rcGetEGLVersion(ctx, major, minor);
H A DrenderControl_enc.cpp59 EGLint rcGetEGLVersion_enc(void *self , EGLint* major, EGLint* minor) argument
87 stream->readback(minor, __size_minor);
88 if (useChecksum) checksumCalculator->addBuffer(minor, __size_minor);
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
H A Dmeminit_utils.h83 void post_code(uint8_t major, uint8_t minor);
H A Dmeminit_utils.c1289 uint8_t minor)
1293 PostCode = ((major << 8) | minor);
1297 DPF(D_INFO, "POST: 0x%01X%02X\n", major, minor);
1287 post_code( uint8_t major, uint8_t minor) argument
/device/linaro/bootloader/edk2/StdLib/Include/sys/
H A Dtypes.h231 /* Major, minor numbers, dev_t's. */
233 #define minor(x) ((int32_t)((((x) & 0xfff00000) >> 12) | \ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dplatform.py455 version string using the format major.minor.build (or patchlevel).
754 minor = (sysv & 0x00F0) >> 4
757 if (major, minor) >= (10, 4):
763 major,minor,patch = _mac_ver_lookup(('sys1','sys2','sys3'))
764 release = '%i.%i.%i' %(major, minor, patch)
766 release = '%s.%i.%i' % (_bcd2str(major),minor,patch)
1502 """ Returns the Python version as string 'major.minor.patchlevel'
1512 """ Returns the Python version as tuple (major, minor, patchlevel)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dplatform.py455 version string using the format major.minor.build (or patchlevel).
749 minor = (sysv & 0x00F0) >> 4
752 if (major, minor) >= (10, 4):
758 major,minor,patch = _mac_ver_lookup(('sys1','sys2','sys3'))
759 release = '%i.%i.%i' %(major, minor, patch)
761 release = '%s.%i.%i' % (_bcd2str(major),minor,patch)
1461 """ Returns the Python version as string 'major.minor.patchlevel'
1471 """ Returns the Python version as tuple (major, minor, patchlevel)
/device/generic/goldfish-opengl/tests/gles_android_wrapper/
H A Degl.cpp238 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
240 return getDispatch()->eglInitialize(dpy, major, minor);
/device/generic/goldfish-opengl/system/include/EGL/
H A Degl.h252 EGLAPI EGLBoolean EGLAPIENTRY eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_ssl.c1652 unsigned int major, minor, fix, patch, status; local
1742 minor = libver & 0xFF;
1745 r = Py_BuildValue("IIIII", major, minor, fix, patch, status);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
H A Dexpat.h1000 int minor; member in struct:__anon3055
1036 /* Expat follows the GNU/Linux convention of odd number minor version for
1037 beta/development releases and even number minor version for stable
1039 change to major or minor version.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
H A Dexpat.h966 int minor; member in struct:__anon3387
1000 /* Expat follows the GNU/Linux convention of odd number minor version for
1001 beta/development releases and even number minor version for stable
1003 change to major or minor version.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/faqwiz/
H A Dfaqwiz.py112 [major, minor] = map(int, m.group(1, 2))
113 return major, minor
/device/generic/goldfish-opengl/system/egl/
H A Degl.cpp839 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
848 if (minor!=NULL)
849 *minor = s_display.getVersionMinor();

Completed in 446 milliseconds

12