OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TILT_HISTORY_SIZE
(Results
1 - 5
of
5
) sorted by null
/device/google/contexthub/firmware/src/drivers/window_orientation/
window_orientation.c
67
#define
TILT_HISTORY_SIZE
200
97
uint32_t tilt_history_time[
TILT_HISTORY_SIZE
];
99
int8_t tilt_history[
TILT_HISTORY_SIZE
];
277
for (i = 0; i <
TILT_HISTORY_SIZE
; ++i) {
287
index = ((index + 1) ==
TILT_HISTORY_SIZE
) ? 0 : (index + 1);
294
int next = (index == 0) ? (
TILT_HISTORY_SIZE
- 1): (index - 1);
/frameworks/base/services/core/java/com/android/server/policy/
WindowOrientationListener.java
499
private static final int
TILT_HISTORY_SIZE
= 200;
500
private float[] mTiltHistory = new float[
TILT_HISTORY_SIZE
];
501
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
Completed in 537 milliseconds