Searched defs:curr (Results 1 - 10 of 10) 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/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.cpp207 __eglMustCastToProperFunctionPointerType* curr,
256 *curr++ = f;
378 __eglMustCastToProperFunctionPointerType* curr = local
392 *curr++ = f;
205 init_api(void* dso, char const * const * api, __eglMustCastToProperFunctionPointerType* curr, getProcAddressType getProcAddress) argument
/frameworks/native/services/sensorservice/
H A DSensorService.cpp436 int32_t curr = buffer[i].sensor; local
437 if (curr != prev) {
439 prev = curr;
809 int32_t curr = buffer[i].sensor; local
813 // Setting curr to the correct sensor to ensure the sensor events per connection are
815 curr = buffer[i].meta_data.sensor;
817 ssize_t index = mSensorInfo.indexOfKey(curr);
829 } while ((i<numEvents) && ((buffer[i].sensor == curr) ||
831 buffer[i].meta_data.sensor == curr)));

Completed in 4496 milliseconds