Searched refs:curr (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/libs/ui/
H A DEGLUtils.cpp94 EGLConfig curr = configs[i]; local
95 eglGetConfigAttrib(dpy, curr, EGL_RED_SIZE, &r);
96 eglGetConfigAttrib(dpy, curr, EGL_GREEN_SIZE, &g);
97 eglGetConfigAttrib(dpy, curr, EGL_BLUE_SIZE, &b);
98 eglGetConfigAttrib(dpy, curr, EGL_ALPHA_SIZE, &a);
100 config = curr;
/frameworks/base/core/java/android/view/
H A DScaleGestureDetector.java327 private void setContext(MotionEvent curr) { argument
331 mCurrEvent = MotionEvent.obtain(curr);
343 final float cx0 = curr.getX(0);
344 final float cy0 = curr.getY(0);
345 final float cx1 = curr.getX(1);
346 final float cy1 = curr.getY(1);
359 mTimeDelta = curr.getEventTime() - prev.getEventTime();
360 mCurrPressure = curr.getPressure(0) + curr.getPressure(1);
/frameworks/base/media/libmedia/
H A DMetadata.cpp142 size_t curr = mData->dataPosition(); local
147 size_t left = curr - mBegin;
163 mData->setDataPosition(curr);
/frameworks/base/libs/surfaceflinger/
H A DTokenizer.cpp111 const run_t* const curr = a + mid; local
113 if (token < curr->first) c = 1;
114 else if (token >= curr->first+curr->length) c = -1;
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dconceal.cpp138 void CopyVopMB(Vop *curr, uint8 *prevFrame, int mbnum, int width_Y, int height) argument
154 y1 = curr->yChan + lumstart;
155 u1 = curr->uChan + chrstart;
156 v1 = curr->vChan + chrstart;
H A Dmp4dec_lib.h310 void CopyVopMB(Vop *curr, uint8 *prev, int mbnum, int width, int height);
/frameworks/base/opengl/libagl/
H A DTokenizer.cpp112 const run_t* const curr = a + mid; local
114 if (token < curr->first) c = 1;
115 else if (token >= curr->first+curr->length) c = -1;
H A DTextureObjectManager.cpp227 const GGLSurface* curr = mMipmaps + i; local
228 if (curr->format != surface.format) {
235 if (w != curr->width || h != curr->height) {
239 prev = curr;
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp141 AutoDecoderCancel* curr = gAutoDecoderCancel; local
142 SkASSERT(curr);
143 SkASSERT(curr->fPrev == NULL);
146 while (curr) {
149 if (curr->fPrev) {
150 SkASSERT(curr->fPrev->fNext == curr);
152 if (curr->fNext) {
153 SkASSERT(curr->fNext->fPrev == curr);
491 off_t curr = ::lseek(fd, 0, SEEK_CUR); local
[all...]
/frameworks/base/opengl/libs/EGL/
H A DLoader.cpp183 __eglMustCastToProperFunctionPointerType* curr,
220 *curr++ = f;
249 __eglMustCastToProperFunctionPointerType* curr = local
263 *curr++ = f;
181 init_api(void* dso, char const * const * api, __eglMustCastToProperFunctionPointerType* curr, getProcAddressType getProcAddress) argument
H A DLoader.h82 __eglMustCastToProperFunctionPointerType* curr,
/frameworks/base/libs/utils/
H A DVectorImpl.cpp167 void* curr = reinterpret_cast<char*>(array) + mItemSize*(i-1); local
168 if (cmp(curr, item, state) > 0) {
177 curr = reinterpret_cast<char*>(array) + mItemSize*(i-1);
188 _do_copy(next, curr, 1);
189 next = curr;
191 curr = reinterpret_cast<char*>(array) + mItemSize*(j);
192 } while (j>=0 && (cmp(curr, temp, state) > 0));
530 const void* const curr = reinterpret_cast<const char *>(a) + (mid*s);
531 const int c = do_compare(curr, item);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java12592 BroadcastFilter curr = null;
12597 if (curr == null) {
12598 curr = registeredReceivers.get(ir);
12600 if (curr.getPriority() >= curt.priority) {
12602 receivers.add(it, curr);
12604 curr = null;

Completed in 1099 milliseconds