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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
SignalController.java 37 static final int HISTORY_SIZE = 64;
54 // Save the previous HISTORY_SIZE states for logging.
69 mHistory = new State[HISTORY_SIZE];
70 for (int i = 0; i < HISTORY_SIZE; i++) {
181 mHistory[mHistoryIndex++ & (HISTORY_SIZE - 1)].copyFrom(mLastState);
190 for (int i = 0; i < HISTORY_SIZE; i++) {
194 for (int i = mHistoryIndex + HISTORY_SIZE - 1;
195 i >= mHistoryIndex + HISTORY_SIZE - size; i--) {
196 pw.println(" Previous State(" + (mHistoryIndex + HISTORY_SIZE - i) + "): "
197 + mHistory[i & (HISTORY_SIZE - 1)])
    [all...]
  /frameworks/native/include/input/
VelocityTracker.h 173 static const uint32_t HISTORY_SIZE = 20;
190 Movement mMovements[HISTORY_SIZE];
248 static const uint32_t HISTORY_SIZE = 20;
264 Movement mMovements[HISTORY_SIZE];
  /frameworks/base/services/usage/java/com/android/server/usage/
AppIdleHistory.java 59 private static final int HISTORY_SIZE = 100;
90 final byte[] recent = new byte[HISTORY_SIZE];
188 packageHistory.recent[HISTORY_SIZE - 1] = FLAG_LAST_STATE | FLAG_PARTIAL_ACTIVE;
198 packageHistory.recent[HISTORY_SIZE - 1] &= ~FLAG_LAST_STATE;
206 && (thisPeriod - mLastPeriod) < HISTORY_SIZE - 1) {
214 HISTORY_SIZE - diff);
217 idleState.recent[HISTORY_SIZE - i - 1] =
218 (byte) (idleState.recent[HISTORY_SIZE - diff - 1] & FLAG_LAST_STATE);
411 for (int i = 0; i < HISTORY_SIZE; i++) {
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
OrientationSensorExampleActivity.java 42 private static final int HISTORY_SIZE = 300; // number of points to plot in history
111 aprHistoryPlot.setDomainBoundaries(0, HISTORY_SIZE, BoundaryMode.FIXED);
122 aprHistoryPlot.setDomainStepValue(HISTORY_SIZE/10);
232 if (rollHistorySeries.size() > HISTORY_SIZE) {
  /frameworks/native/libs/input/
VelocityTracker.cpp 357 const uint32_t LeastSquaresVelocityTrackerStrategy::HISTORY_SIZE;
380 if (++mIndex == HISTORY_SIZE) {
565 float x[HISTORY_SIZE];
566 float y[HISTORY_SIZE];
567 float w[HISTORY_SIZE];
568 float time[HISTORY_SIZE];
588 index = (index == 0 ? HISTORY_SIZE : index) - 1;
589 } while (++m < HISTORY_SIZE);
638 uint32_t nextIndex = (index + 1) % HISTORY_SIZE;
815 const uint32_t LegacyVelocityTrackerStrategy::HISTORY_SIZE;
    [all...]
  /frameworks/base/services/core/java/com/android/server/
GraphicsStatsService.java 52 * 3) ASHMEM_SIZE * HISTORY_SIZE
63 private static final int HISTORY_SIZE = 20;
69 private HistoricalData[] mHistoricalLog = new HistoricalData[HISTORY_SIZE];
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
NetworkControllerSignalTest.java 282 assertEquals(0, SignalController.HISTORY_SIZE & (SignalController.HISTORY_SIZE - 1));
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 91 #define HISTORY_SIZE 100
372 mBufferHead = tick - HISTORY_SIZE;
376 if (tick - mBufferHead > HISTORY_SIZE) {
378 mBufferHead = tick - HISTORY_SIZE;
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 

Completed in 3219 milliseconds