Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/os/drivers/window_orientation/
Dwindow_orientation.c94 #define TILT_HISTORY_SIZE 64 macro
126 uint32_t tilt_history_time[TILT_HISTORY_SIZE];
128 int8_t tilt_history[TILT_HISTORY_SIZE];
330 for (i = 0; i < TILT_HISTORY_SIZE; ++i) { in addTiltHistoryEntry()
340 index = ((index + 1) == TILT_HISTORY_SIZE) ? 0 : (index + 1); in addTiltHistoryEntry()
347 int next = (index == 0) ? (TILT_HISTORY_SIZE - 1): (index - 1); in nextTiltHistoryIndex()