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

/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 DeglApi.cpp224 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
231 EGLBoolean res = dp->initialize(major, minor);
/frameworks/base/services/core/jni/
H A Dcom_android_server_AssetAtlasService.cpp104 EGLint minor; local
105 if (!eglInitialize(display, &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/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/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/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/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java209 private void drawOval(Canvas canvas, float x, float y, float major, float minor, argument
213 mReusableOvalRect.left = x - minor / 2;
214 mReusableOvalRect.right = x + minor / 2;
/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/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/base/core/jni/
H A Dandroid_opengl_EGL14.cpp166 /* EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor ) */
180 EGLint *minor = (EGLint *) 0; local
208 _exceptionMessage = "minor == null";
226 minor = minor_base + minorOffset;
231 (EGLint *)minor
/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/libagl/
H A Degl.cpp1397 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
1413 if (minor != NULL) *minor = VERSION_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/av/services/audiopolicy/
H A DAudioPolicyManager.cpp7948 uint32_t major, minor; local
7949 sscanf((char *)node->value, "%u.%u", &major, &minor);
7950 module->mHalVersion = HARDWARE_DEVICE_API_VERSION(major, minor);
7951 ALOGV("loadGlobalConfig() mHalVersion = %04x major %u minor %u",
7952 module->mHalVersion, major, minor);

Completed in 326 milliseconds