Home
last modified time | relevance | path

Searched refs:maj (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest__locale.py13 maj, min, mic = [int(part) for part in uname()[2].split(".")] variable
14 if (maj, min, mic) < (8, 0, 0):
Dtest_sys.py255 maj, min, buildno, plat, csd = sys.getwindowsversion()
/device/generic/goldfish-opengl/system/egl/
DeglContext.h29 EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx, int maj, int min);
Degl.cpp174 EGLContext_t::EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx, int maj, int m… in EGLContext_t() argument
182 majorVersion(maj), in EGLContext_t()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dplatform.py611 maj,min,buildno,plat,csd = winver
612 version = '%i.%i.%i' % (maj,min,buildno & 0xFFFF)
623 if maj == 4:
632 elif maj == 5:
637 if maj <= 4:
639 elif maj == 5:
648 elif maj == 6:
682 release = '%i.%i' % (maj,min)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dplatform.py611 maj,min,buildno,plat,csd = winver
612 version = '%i.%i.%i' % (maj,min,buildno & 0xFFFF)
623 if maj == 4:
632 elif maj == 5:
637 if maj <= 4:
639 elif maj == 5:
648 elif maj == 6:
687 release = '%i.%i' % (maj,min)
/device/google/contexthub/lib/nanohub/
Dsha2.c97 uint32_t maj = (a & b) ^ (a & c) ^ (b & c); in sha2processBlock() local
98 uint32_t temp2 = s0 + maj; in sha2processBlock()
/device/generic/goldfish-opengl/system/GLESv2_enc/
DGLESv2Validation.cpp432 #define COMPRESSED_TEX_IMAGE_SUPPORT_CASE(internal, maj, min) \ in supportedCompressedFormat() argument
434 if (maj < 3) return true; \ in supportedCompressedFormat()
435 if (glesMajorVersion < maj) return false; \ in supportedCompressedFormat()