Searched defs:returnValue (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_getbits.cpp120 uint32 returnValue = 0; local
124 return (returnValue);
135 returnValue = (((uint32)(Elem)) << 24) |
144 returnValue <<= bitIndex;
147 returnValue >>= (32 - neededBits);
151 return (returnValue);
166 uint16 returnValue; local
174 returnValue = (((uint16)(Elem)) << 8) |
182 returnValue = (returnValue << (bitInde
203 uint32 returnValue; local
238 uint8 returnValue; local
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_tls.h58 int line, EGLint error, T returnValue, bool quiet = false) {
60 return returnValue;
57 setErrorEtc(const char* caller, int line, EGLint error, T returnValue, bool quiet = false) argument
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp60 EGLBoolean returnValue; local
82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
83 checkEglError("eglInitialize", returnValue);
84 if (returnValue != EGL_TRUE) {
90 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
91 if (returnValue) {
92 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
111 returnValue = eglMakeCurrent(dpy, surface, surface, context);
112 checkEglError("eglMakeCurrent", returnValue);
113 if (returnValue !
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c343 H264SwDecRet returnValue = H264SWDEC_STRM_PROCESSED; local
421 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
426 returnValue = H264SWDEC_HDRS_RDY_BUFF_NOT_EMPTY;
435 returnValue = H264SWDEC_PIC_RDY;
437 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
446 returnValue = H264SWDEC_STRM_ERR;
451 returnValue = H264SWDEC_MEMFAIL;
463 returnValue);
467 return(returnValue);
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp262 EGLBoolean returnValue; local
286 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
287 checkEglError("eglInitialize", returnValue);
289 if (returnValue != EGL_TRUE) {
302 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
303 if (returnValue) {
304 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
326 returnValue = eglMakeCurrent(dpy, surface, surface, context);
327 checkEglError("eglMakeCurrent", returnValue);
328 if (returnValue !
[all...]
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp225 EGLBoolean returnValue; local
249 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
250 checkEglError("eglInitialize", returnValue);
252 if (returnValue != EGL_TRUE) {
258 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
259 if (returnValue) {
260 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
282 returnValue = eglMakeCurrent(dpy, surface, surface, context);
283 checkEglError("eglMakeCurrent", returnValue);
284 if (returnValue !
[all...]
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp366 EGLBoolean returnValue; local
394 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
395 checkEglError("eglInitialize", returnValue);
397 if (returnValue != EGL_TRUE) {
437 returnValue = eglMakeCurrent(dpy, surface, surface, context);
438 checkEglError("eglMakeCurrent", returnValue);
439 if (returnValue != EGL_TRUE) {
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp335 EGLBoolean returnValue; local
359 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
360 checkEglError("eglInitialize", returnValue);
362 if (returnValue != EGL_TRUE) {
368 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
369 if (returnValue) {
370 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
392 returnValue = eglMakeCurrent(dpy, surface, surface, context);
393 checkEglError("eglMakeCurrent", returnValue);
394 if (returnValue !
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp56 EGLBoolean returnValue; local
73 returnValue = eglInitialize(*dpy, &majorVersion, &minorVersion);
74 checkEglError("eglInitialize", returnValue);
78 if (returnValue != EGL_TRUE) {
88 returnValue = EGLUtils::selectConfigForNativeWindow(*dpy,
90 if (returnValue) {
92 returnValue);
115 returnValue = eglMakeCurrent(*dpy, *surface, *surface, context);
116 checkEglError("eglMakeCurrent", returnValue);
117 if (returnValue !
[all...]
/frameworks/native/opengl/libagl/
H A Degl.cpp74 static T setError(GLint error, T returnValue) { argument
82 return returnValue;

Completed in 54 milliseconds