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

12

/frameworks/native/opengl/libs/EGL/
H A Degldefs.h44 EGLint minor; member in struct:android::egl_connection_t
H A Degl_display.cpp121 EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { argument
130 if (minor != NULL)
131 *minor = VERSION_MINOR;
159 cnx->minor = -1;
162 if (cnx->egl.eglInitialize(idpy, &cnx->major, &cnx->minor)) {
164 // idpy, cnx->major, cnx->minor, cnx);
227 if (minor != NULL)
228 *minor = VERSION_MINOR;
H A Degl_display.h61 EGLBoolean initialize(EGLint *major, EGLint *minor);
/frameworks/base/core/java/android/content/pm/
H A DConfigurationInfo.java79 * major version and the lower order 16 bits the minor version.
135 * This method extracts the major and minor version of reqGLEsVersion attribute
142 int minor = reqGlEsVersion & 0x0000ffff;
143 return String.valueOf(major)+"."+String.valueOf(minor);
H A DFeatureInfo.java42 * major version and the lower order 16 bits the minor version. Only valid
106 * This method extracts the major and minor version of reqGLEsVersion attribute
113 int minor = reqGlEsVersion & 0x0000ffff;
114 return String.valueOf(major)+"."+String.valueOf(minor);
/frameworks/native/opengl/tools/glgen/specs/egl/
H A Dchecks.spec1 eglInitialize check major 1 check minor 1
H A DEGL14.spec3 EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor )
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_context.cpp177 int major, minor; local
178 if (sscanf(str, "OpenGL ES-CM %d.%d", &major, &minor) != 2) {
179 if (sscanf(str, "OpenGL ES %d.%d", &major, &minor) != 2) {
182 minor = 0;
186 mVersionMinor = minor;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp181 int major, minor; local
182 if (sscanf(str, "OpenGL ES-CM %d.%d", &major, &minor) != 2) {
183 if (sscanf(str, "OpenGL ES %d.%d", &major, &minor) != 2) {
189 if (major == 1 && minor == 0) return GLES_VERSION_1_0;
190 if (major == 1 && minor >= 1) return GLES_VERSION_1_1;
191 if (major == 2 && minor >= 0) return GLES_VERSION_2_0;
192 if (major == 3 && minor >= 0) return GLES_VERSION_3_0;
194 ALOGW("Unrecognized OpenGL ES version: %d.%d", major, minor);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h135 u32 minor; /* Dncoder API minor version */ member in struct:__anon473
/frameworks/rs/
H A DrsMatrix4x4.cpp51 float minor = local
56 float cofactor = (i+j) & 1 ? -minor : minor;
93 float minor = (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1])) local
97 float cofactor = (i+j) & 1 ? -minor : minor;
/frameworks/base/libs/hwui/renderthread/
H A DEglManager.cpp91 EGLint major, minor; local
92 LOG_ALWAYS_FATAL_IF(eglInitialize(mEglDisplay, &major, &minor) == EGL_FALSE,
95 ALOGI("Initialized EGL, version %d.%d", (int)major, (int)minor);
/frameworks/base/services/core/jni/
H A Dcom_android_server_AssetAtlasService.cpp104 EGLint minor; local
105 if (!eglInitialize(display, &major, &minor)) {
/frameworks/base/rs/java/android/renderscript/
H A DMatrix4f.java411 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] -
418 float cofactor = ((i+j) & 1) != 0 ? -minor : minor;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix4f.java412 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] -
419 float cofactor = ((i+j) & 1) != 0 ? -minor : minor;
/frameworks/base/core/java/android/widget/
H A DGridLayout.java738 int minor = 0;
757 minor = minorRange.min;
763 while (!fits(maxSizes, major, minor, minor + minorSpan)) {
767 if (minor + minorSpan <= count) {
768 minor++;
770 minor = 0;
776 procrusteanFill(maxSizes, minor, minor + minorSpan, major + majorSpan);
780 setCellGroup(lp, major, majorSpan, minor, minorSpa
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java726 int minor = 0;
745 minor = minorRange.min;
751 while (!fits(maxSizes, major, minor, minor + minorSpan)) {
755 if (minor + minorSpan <= count) {
756 minor++;
758 minor = 0;
764 procrusteanFill(maxSizes, minor, minor + minorSpan, major + majorSpan);
768 setCellGroup(lp, major, majorSpan, minor, minorSpa
[all...]
/frameworks/base/core/jni/
H A Dcom_android_internal_os_Zygote.cpp333 int minor;
339 if (sscanf(uts.release, "%d.%d", &major, &minor) != 2) {
344 return (major < 3) || ((major == 3) && (minor < 4));
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java153 * @param minor_version The HTTP minor version
161 " minor: " + minor_version +
622 public void expectStatus(int major, int minor, int code) { argument
625 expectMinor = minor;
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDex.java221 int minor = Integer.parseInt(matcher.group(2));
224 && (minor >= VM_WITH_MULTIDEX_VERSION_MINOR));
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c497 ver.minor = H264SWDEC_MINOR_VERSION;
/frameworks/base/opengl/java/android/opengl/
H A DEGL14.java170 // C function EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor )
176 int[] minor,
172 eglInitialize( EGLDisplay dpy, int[] major, int majorOffset, int[] minor, int minorOffset ) argument
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Degl.h197 GLAPI EGLBoolean APIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor);
/frameworks/native/services/inputflinger/
H A DEventHub.cpp96 static void getLinuxRelease(int* major, int* minor) { argument
98 if (uname(&info) || sscanf(info.release, "%d.%d", major, minor) <= 0) {
99 *major = 0, *minor = 0;
220 int major, minor;
221 getLinuxRelease(&major, &minor);
223 mUsingEpollWakeup = major > 3 || (major == 3 && minor >= 5);
/frameworks/native/opengl/include/EGL/
H A Degl.h252 EGLAPI EGLBoolean EGLAPIENTRY eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor);

Completed in 7844 milliseconds

12