Searched defs:minor (Results 1 - 19 of 19) 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.cpp123 EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { argument
132 if (minor != NULL)
133 *minor = VERSION_MINOR;
152 cnx->minor = -1;
155 if (cnx->egl.eglInitialize(idpy, &cnx->major, &cnx->minor)) {
157 // idpy, cnx->major, cnx->minor, cnx);
216 if (minor != NULL)
217 *minor = VERSION_MINOR;
H A DeglApi.cpp294 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
301 EGLBoolean res = dp->initialize(major, minor);
/frameworks/base/services/core/jni/
H A Dcom_android_server_AssetAtlasService.cpp80 EGLint minor; local
81 if (!eglInitialize(display, &major, &minor)) {
/frameworks/rs/driver/
H A DrsdCore.cpp265 extern "C" bool rsdHalQueryVersion(uint32_t *major, uint32_t *minor) { argument
267 *minor = 0;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h135 u32 minor; /* Dncoder API minor version */ member in struct:__anon519
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DConfigParsingUtils.cpp357 uint32_t major, minor; local
358 sscanf((char *)node->value, "%u.%u", &major, &minor);
359 module->setHalVersion(HARDWARE_DEVICE_API_VERSION(major, minor));
360 ALOGV("loadGlobalConfig() mHalVersion = %04x major %u minor %u",
361 module->getHalVersion(), major, minor);
H A DSerializer.cpp424 uint32_t major, minor; local
425 sscanf(versionLiteral.c_str(), "%u.%u", &major, &minor);
426 version = HARDWARE_DEVICE_API_VERSION(major, minor);
427 ALOGV("%s: mHalVersion = %04x major %u minor %u", __FUNCTION__,
428 version, major, minor);
/frameworks/base/libs/hwui/debug/
H A Dnullegl.cpp62 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) { argument
/frameworks/base/libs/hwui/renderthread/
H A DEglManager.cpp108 EGLint major, minor; local
109 LOG_ALWAYS_FATAL_IF(eglInitialize(mEglDisplay, &major, &minor) == EGL_FALSE,
112 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/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/packages/MtpDocumentsProvider/jni/
H A Dcom_android_mtp_AppFuse.cpp201 if (in->major != FUSE_KERNEL_VERSION || in->minor < 6) {
204 in->major, in->minor, FUSE_KERNEL_VERSION);
209 const uint32_t minor = in->minor; local
217 // If the kernel only works on minor revs older than or equal to 22,
220 if (minor <= 22) {
226 out->data()->minor = std::min(minor, 15u);
/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.cpp171 /* EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor ) */
185 EGLint *minor = (EGLint *) 0; local
222 minor = minor_base + minorOffset;
228 (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.cpp1414 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
1430 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;
227 int major, minor;
228 getLinuxRelease(&major, &minor);
230 mUsingEpollWakeup = major > 3 || (major == 3 && minor >= 5);

Completed in 1069 milliseconds