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

/frameworks/native/services/surfaceflinger/
H A DGLExtensions.cpp52 char const* curr = (char const*)extensions; local
53 char const* head = curr;
55 head = strchr(curr, ' ');
56 String8 s(curr, head ? head-curr : strlen(curr));
60 curr = head+1;
63 curr = egl_extensions;
64 head = curr;
66 head = strchr(curr, ' ');
[all...]
H A DLayerScreenshot.cpp104 const LayerBase::State& curr(currentState());
107 if (!(curr.flags & layer_state_t::eLayerHidden)) {
109 status_t err = captureLocked(curr.layerStack);
114 } else if (curr.flags & layer_state_t::eLayerHidden) {
H A DSurfaceFlinger.cpp1090 const KeyedVector< wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
1092 if (!curr.isIdenticalTo(draw)) {
1094 const size_t cc = curr.size();
1102 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
1119 const DisplayDeviceState& state(curr[j]);
1120 const wp<IBinder>& display(curr.keyAt(j));
1152 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
1153 const DisplayDeviceState& state(curr[i]);
1182 const wp<IBinder>& display(curr.keyAt(i));
/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...]
H A DBitmapFactory.cpp416 off64_t curr = ::lseek64(fd, 0, SEEK_CUR); local
417 if (curr < 0) {
421 ::lseek64(fd, curr, SEEK_SET);
/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;
H A Dmp4dec_lib.h310 void CopyVopMB(Vop *curr, uint8 *prev, int mbnum, int width, int height);
/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.h71 __eglMustCastToProperFunctionPointerType* curr,
H A DLoader.cpp216 __eglMustCastToProperFunctionPointerType* curr,
265 *curr++ = f;
331 __eglMustCastToProperFunctionPointerType* curr = local
345 *curr++ = f;
214 init_api(void* dso, char const * const * api, __eglMustCastToProperFunctionPointerType* curr, getProcAddressType getProcAddress) argument
/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/libs/utils/
H A DVectorImpl.cpp177 void* curr = reinterpret_cast<char*>(array) + mItemSize*(i-1); local
178 if (cmp(curr, item, state) > 0) {
187 curr = reinterpret_cast<char*>(array) + mItemSize*(i-1);
198 _do_copy(next, curr, 1);
199 next = curr;
201 curr = reinterpret_cast<char*>(array) + mItemSize*(j);
202 } while (j>=0 && (cmp(curr, temp, state) > 0));
550 const void* const curr = reinterpret_cast<const char *>(a) + (mid*s);
551 const int c = do_compare(curr, item);
/frameworks/native/services/sensorservice/
H A DSensorService.cpp328 int32_t curr = buffer[i].sensor; local
329 if (curr != prev) {
331 prev = curr;
614 const int32_t curr = buffer[i].sensor; local
615 if (mSensorInfo.indexOf(curr) >= 0) {
618 } while ((i<numEvents) && (buffer[i].sensor == curr));
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java11883 BroadcastFilter curr = null;
11888 if (curr == null) {
11889 curr = registeredReceivers.get(ir);
11891 if (curr.getPriority() >= curt.priority) {
11893 receivers.add(it, curr);
11895 curr = null;

Completed in 3170 milliseconds