Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/src/
Dtimer.c44 ATOMIC_BITSET_DECL(mTimersValid, MAX_TIMERS, static);
46 static struct Timer mTimers[MAX_TIMERS];
59 for (i = 0; i < MAX_TIMERS; i++) in timFindTimerById()
106 for (i = 0, tim = &mTimers[0]; i < MAX_TIMERS; i++, tim++) { in timFireAsNeededAndUpdateAlarms()
218 for (i = 0, count = 0; i < MAX_TIMERS; ++i, ++tim) { in timTimerCancelAll()
237 atomicBitsetInit(mTimersValid, MAX_TIMERS); in timInit()
/device/google/contexthub/firmware/inc/
Dtimer.h28 #define MAX_TIMERS 8 /* we *REALLY* do not want these proliferating endlessly, hence a small limit … macro