HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentFrame (Results 1 - 18 of 18) sorted by null

  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.cpp 56 if(mCurrentFrame.layerCount > MAX_NUM_APP_LAYERS)
63 "fbCount:%2d \n", mCurrentFrame.layerCount,
64 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
66 (mCurrentFrame.needsRedraw? "YES" : "NO"),
67 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
71 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
74 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
75 mCurrentFrame.layerToMDP[index],
76 (mCurrentFrame.isFBComposed[index]
    [all...]
hwc_mdpcomp.h 48 void reset() { mCurrentFrame.reset(0); }
49 int getMDPCompCount() { return mCurrentFrame.mdpCount; }
181 struct FrameInfo mCurrentFrame;
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_mdpcomp.cpp 59 fbCount:%2d \n", mCurrentFrame.layerCount,
60 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
62 (mCurrentFrame.needsRedraw? "YES" : "NO"),
63 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
67 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
70 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
71 mCurrentFrame.layerToMDP[index],
72 (mCurrentFrame.isFBComposed[index] ?
73 (mCurrentFrame.needsRedraw ? "GLES" : "CACHE") : "MDP")
    [all...]
hwc_mdpcomp.h 173 struct FrameInfo mCurrentFrame;
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_mdpcomp.cpp 64 if(mCurrentFrame.layerCount > MAX_NUM_APP_LAYERS)
71 "fbCount:%2d \n", mCurrentFrame.layerCount,
72 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
74 (mCurrentFrame.needsRedraw? "YES" : "NO"),
75 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
94 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
97 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
98 mCurrentFrame.layerToMDP[index],
99 (mCurrentFrame.isFBComposed[index]
    [all...]
hwc_mdpcomp.h 50 bool isGLESOnlyComp() { return (mCurrentFrame.mdpCount == 0); }
248 struct FrameInfo mCurrentFrame;
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_mdpcomp.cpp 63 if(mCurrentFrame.layerCount > MAX_NUM_APP_LAYERS)
70 "fbCount:%2d \n", mCurrentFrame.layerCount,
71 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
73 (mCurrentFrame.needsRedraw? "YES" : "NO"),
74 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
93 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
96 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
97 mCurrentFrame.layerToMDP[index],
98 (mCurrentFrame.isFBComposed[index]
    [all...]
hwc_mdpcomp.h 48 bool isGLESOnlyComp() { return (mCurrentFrame.mdpCount == 0); }
243 struct FrameInfo mCurrentFrame;
  /device/generic/goldfish/camera/
EmulatedCameraDevice.cpp 40 mCurrentFrame(NULL),
51 if (mCurrentFrame != NULL) {
52 delete[] mCurrentFrame;
164 if (mCurrentFrame == NULL || buffer == NULL) {
172 YV12ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
175 YU12ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
178 NV21ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
181 NV12ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
221 mCurrentFrame = new uint8_t[mFrameBufferSize];
222 if (mCurrentFrame == NULL)
    [all...]
EmulatedFakeCameraDevice.cpp 127 mFrameV = mCurrentFrame + mTotalPixels;
134 mFrameU = mCurrentFrame + mTotalPixels;
142 mFrameV = mCurrentFrame + mTotalPixels;
150 mFrameU = mCurrentFrame + mTotalPixels;
232 mCameraHAL->onNextFrameAvailable(mCurrentFrame, mCurFrameTimestamp, this);
260 uint8_t* Y = mCurrentFrame;
320 uint8_t* Y_pos = mCurrentFrame + y * mFrameWidth + x;
349 memset(mCurrentFrame, changeExposure(adjustedColor.Y), mTotalPixels);
365 uint8_t* pY = mCurrentFrame;
EmulatedQemuCameraDevice.cpp 245 status_t query_res = mQemuClient.queryFrame(mCurrentFrame, mPreviewFrame,
255 mCameraHAL->onNextFrameAvailable(mCurrentFrame, mCurFrameTimestamp, this);
EmulatedCameraDevice.h 496 uint8_t* mCurrentFrame;
  /frameworks/base/libs/hwui/
DrawProfiler.cpp 64 , mCurrentFrame(-1)
89 mData[mCurrentFrame].record = NANOS_TO_MILLIS_FLOAT(recordDurationNanos);
96 mData[mCurrentFrame].prepare = NANOS_TO_MILLIS_FLOAT(now - mPreviousTime);
103 mData[mCurrentFrame].playback = NANOS_TO_MILLIS_FLOAT(now - mPreviousTime);
110 mData[mCurrentFrame].swapBuffers = NANOS_TO_MILLIS_FLOAT(now - mPreviousTime);
112 mCurrentFrame = (mCurrentFrame + 1) % mDataSize;
158 mCurrentFrame = 0;
203 const int i = mCurrentFrame * 4;
266 int i = (mCurrentFrame + frameOffset) % mDataSize
    [all...]
DrawProfiler.h 76 int mCurrentFrame;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryViewPage.java 68 private int mCurrentFrame;
227 mCurrentFrame = frame;
238 currentFrame = mCurrentFrame;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLFunctionTraceViewer.java 147 private int mCurrentFrame;
363 mCurrentFrame = selectedFrame - 1;
414 mFrameSummaryViewPage.setSelectedFrame(mCurrentFrame);
    [all...]
  /packages/apps/FMRadio/src/com/android/fmradio/
FmService.java 455 private int mCurrentFrame = 0;
457 return mCurrentFrame < AUDIO_FRAMES_TO_IGNORE_COUNT;
480 mCurrentFrame += 1;
497 mCurrentFrame = 0;
    [all...]
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 

Completed in 845 milliseconds