Searched refs:TILT_HISTORY_SIZE (Results 1 – 1 of 1) sorted by relevance
558 private static final int TILT_HISTORY_SIZE = 200; field in WindowOrientationListener.AccelSensorJudge559 private float[] mTiltHistory = new float[TILT_HISTORY_SIZE];560 private long[] mTiltHistoryTimestampNanos = new long[TILT_HISTORY_SIZE];974 mTiltHistoryIndex = (mTiltHistoryIndex + 1) % TILT_HISTORY_SIZE; in addTiltHistoryEntryLocked()1005 index = (index == 0 ? TILT_HISTORY_SIZE : index) - 1; in nextTiltHistoryIndexLocked()