Home
last modified time | relevance | path

Searched refs:mPrevious (Results 1 – 7 of 7) sorted by relevance

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DGcSnapshot.java71 private final GcSnapshot mPrevious; field in GcSnapshot
262 mPrevious = null; in GcSnapshot()
281 mPrevious = previous; in GcSnapshot()
289 for (Layer layer : mPrevious.mLayers) { in GcSnapshot()
363 if (mPrevious != null) { in dispose()
364 mPrevious.dispose(); in dispose()
386 if (mPrevious != null) { in size()
387 return mPrevious.size() + 1; in size()
729 if (mPrevious != null) { in doRestore()
751 for (Layer layer : mPrevious.mLayers) { in doRestore()
[all …]
/frameworks/av/media/libaudioprocessing/
DAudioResamplerFirGen.h55 mPrevious = cos(wstart - wstep);
58 mPrevious = sin(wstart - wstep);
64 mPrevious = expPrev; in SineGen()
72 mCurrent = mCurrent*mTwoCos - mPrevious; in advance()
73 mPrevious = tmp; in advance()
77 mCurrent = mCurrent*mTwoCos - mPrevious; in valueAdvance()
78 mPrevious = tmp; in valueAdvance()
84 double mPrevious; // previous value of sine/cosine variable
/frameworks/av/services/audioflinger/
DFastThread.cpp43 mPrevious(NULL), mCurrent(NULL), in FastThread()
147 mPrevious = mCurrent; in threadLoop()
207 if (mCurrent != mPrevious) { in threadLoop()
211 mPrevious = mCurrent; in threadLoop()
DFastCapture.cpp41 mPrevious = &sInitial; in FastCapture()
91 const FastCaptureState * const previous = (const FastCaptureState *) mPrevious; in onStateChange()
DFastThread.h52 const FastThreadState* mPrevious; variable
DFastMixer.cpp85 mPrevious = &sInitial; in FastMixer()
218 const FastMixerState * const previous = (const FastMixerState *) mPrevious; in onStateChange()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationUsageStats.java367 private AggregatedStats mPrevious; field in NotificationUsageStats.AggregatedStats
420 if (mPrevious == null) { in getPrevious()
421 mPrevious = new AggregatedStats(mContext, key); in getPrevious()
423 return mPrevious; in getPrevious()