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

/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dgetbits.h102 UInt32 returnValue = 0; local
117 returnValue = (((UInt32) * (pElem)) << 24) |
135 returnValue = (((UInt32) * (pElem + 2)) << 8);
137 returnValue |= (((UInt32) * (pElem + 1)) << 16);
139 returnValue |= (((UInt32) * (pElem)) << 24);
148 returnValue = (((UInt32) * (pElem)) << 24) |
158 returnValue = returnValue << (bitIndex);
161 returnValue = returnValue >> (3
174 UInt returnValue; local
209 UInt returnValue; local
273 UInt32 returnValue; local
[all...]
/frameworks/base/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/base/awt/org/apache/harmony/awt/wtk/
H A DNativeEventQueue.java41 public volatile Object returnValue; field in class:NativeEventQueue.Task
/frameworks/base/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp263 EGLBoolean returnValue; local
287 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
288 checkEglError("eglInitialize", returnValue);
290 if (returnValue != EGL_TRUE) {
303 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
304 if (returnValue) {
305 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
327 returnValue = eglMakeCurrent(dpy, surface, surface, context);
328 checkEglError("eglMakeCurrent", returnValue);
329 if (returnValue !
[all...]
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp301 T setErrorEtc(const char* caller, int line, EGLint error, T returnValue) { argument
313 return returnValue;
/frameworks/base/opengl/libagl/
H A Degl.cpp71 static T setError(GLint error, T returnValue) { argument
79 return returnValue;

Completed in 126 milliseconds