Searched defs:curr (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DAutoDecodeCancel.cpp81 AutoDecoderCancel* curr = gAutoDecoderCancel; local
82 SkASSERT(curr);
83 SkASSERT(curr->fPrev == NULL);
86 while (curr) {
89 if (curr->fPrev) {
90 SkASSERT(curr->fPrev->fNext == curr);
92 if (curr->fNext) {
93 SkASSERT(curr->fNext->fPrev == curr);
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLExtensions.cpp44 char const* curr = (char const*)extensions; local
45 char const* head = curr;
47 head = strchr(curr, ' ');
48 String8 s(curr, head ? head-curr : strlen(curr));
52 curr = head+1;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dsobeloperator.cpp47 const int curr = (i * width + j) * 4; local
48 const int above = (i > 0) ? curr - 4 * width : curr;
49 const int below = (i < height - 1) ? curr + 4 * width : curr;
53 (*(dataPtr + curr + c + right) - *(dataPtr + curr + c + left)) * 2 +
/frameworks/av/media/libmedia/
H A DMetadata.cpp141 size_t curr = mData->dataPosition(); local
146 size_t left = curr - mBegin;
162 mData->setDataPosition(curr);
/frameworks/av/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;
/frameworks/base/libs/hwui/
H A DRenderState.cpp164 pthread_t curr = pthread_self(); local
165 LOG_ALWAYS_FATAL_IF(!pthread_equal(mThreadId, curr), "Wrong thread!");
/frameworks/base/libs/hwui/utils/
H A DSortedListImpl.cpp60 const void* const curr = reinterpret_cast<const char *> (a) + (mid * s); local
61 const int c = do_compare(curr, item);
/frameworks/native/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.cpp222 const GGLSurface* curr = mMipmaps + i; local
223 if (curr->format != surface.format) {
230 if (w != curr->width || h != curr->height) {
234 prev = curr;
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp217 __eglMustCastToProperFunctionPointerType* curr,
266 *curr++ = f;
397 __eglMustCastToProperFunctionPointerType* curr = local
411 *curr++ = f;
215 init_api(void* dso, char const * const * api, __eglMustCastToProperFunctionPointerType* curr, getProcAddressType getProcAddress) argument
/frameworks/ex/framesequence/jni/
H A DFrameSequence_webp.cpp57 WebPIterator curr; local
60 int ok = WebPDemuxGetFrame(mDemux, 1, &curr);
64 prev = curr;
65 ok = WebPDemuxGetFrame(mDemux, i + 1, &curr); // Get ith frame.
68 if ((!curr.has_alpha || curr.blend_method == WEBP_MUX_NO_BLEND) &&
69 isFullFrame(curr, canvasWidth, canvasHeight)) {
77 WebPDemuxReleaseIterator(&curr);
315 // We swap the prev/curr buffers as we go.
325 ALOGD(" prev = %p, curr
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java4723 private void performBootDexOpt(PackageParser.Package pkg, int curr, int total) { argument
4725 Log.i(TAG, "Optimizing app " + curr + " of " + total + ": " + pkg.packageName);
4731 curr, total), true);

Completed in 834 milliseconds