Home
last modified time | relevance | path

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

/Zephyr-latest/tests/benchmarks/app_kernel/src/
Dpipe_b.c19 (1000000 * putsize) / SAFE_DIVISOR(puttime[0]), \
20 (1000000 * putsize) / SAFE_DIVISOR(puttime[1]), \
21 (1000000 * putsize) / SAFE_DIVISOR(puttime[2]))
38 SAFE_DIVISOR(puttime[0])), \
40 SAFE_DIVISOR(puttime[1])), \
42 SAFE_DIVISOR(puttime[2])))
Dmailbox_b.c21 (((uint64_t)putsize * 1000000U) / SAFE_DIVISOR(puttime)))
31 SAFE_DIVISOR(puttime - empty_msg_put_time)))
Dmaster.h63 #define SAFE_DIVISOR(a) (((a) != 0) ? (a) : 1) macro