HomeSort by relevance Sort by last modified time
    Searched defs:TILT_HISTORY_SIZE (Results 1 - 9 of 9) sorted by null

  /device/google/contexthub/firmware/os/drivers/window_orientation/
window_orientation.c 95 // TILT_HISTORY_SIZE has to be greater than the time constant
98 #define TILT_HISTORY_SIZE 64
130 uint32_t tilt_history_time[TILT_HISTORY_SIZE];
132 int8_t tilt_history[TILT_HISTORY_SIZE];
334 for (i = 0; i < TILT_HISTORY_SIZE; ++i) {
344 index = ((index + 1) == TILT_HISTORY_SIZE) ? 0 : (index + 1);
351 int next = (index == 0) ? (TILT_HISTORY_SIZE - 1): (index - 1);
  /frameworks/base/services/core/java/com/android/server/policy/
WindowOrientationListener.java 554 private static final int TILT_HISTORY_SIZE = 200;
555 private float[] mTiltHistory = new float[TILT_HISTORY_SIZE];
556 private long[] mTiltHistoryTimestampNanos = new long[TILT_HISTORY_SIZE];
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 

Completed in 114 milliseconds