Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/os/core/
Dtimer.c52 ATOMIC_BITSET_DECL(mTimersValid, MAX_TIMERS, static);
54 static struct Timer mTimers[MAX_TIMERS];
66 for (i = 0; i < MAX_TIMERS; i++) in timFindTimerById()
117 for (i = 0, tim = &mTimers[0]; i < MAX_TIMERS; i++, tim++) { in timFireAsNeededAndUpdateAlarms()
261 for (i = 0, count = 0; i < MAX_TIMERS; ++i, ++tim) { in timTimerCancelAll()
281 atomicBitsetInit(mTimersValid, MAX_TIMERS); in timInit()
/device/google/contexthub/firmware/os/inc/
Dtimer.h28 #define MAX_TIMERS 16 /* we *REALLY* do not want these proliferating endlessly, hence a small lim… macro