OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_TIMERS
(Results
1 - 2
of
2
) sorted by null
/device/google/contexthub/firmware/os/inc/
timer.h
28
#define
MAX_TIMERS
16 /* we *REALLY* do not want these proliferating endlessly, hence a small limit */
/device/google/contexthub/firmware/os/core/
timer.c
55
ATOMIC_BITSET_DECL(mTimersValid,
MAX_TIMERS
, static);
57
static struct Timer mTimers[
MAX_TIMERS
];
77
for (i = 0; i <
MAX_TIMERS
; i++)
128
for (i = 0, tim = &mTimers[0]; i <
MAX_TIMERS
; i++, tim++) {
277
for (i = 0, count = 0; i <
MAX_TIMERS
; ++i, ++tim) {
297
atomicBitsetInit(mTimersValid,
MAX_TIMERS
);
Completed in 82 milliseconds