Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/lll/
Dlll_prof.c63 uint8_t latency, cputime, prev; in lll_prof_send() local
93 cputime = radio_tmr_sample_get() - timestamp_latency; in lll_prof_send()
96 if (cputime > cputime_max) { in lll_prof_send()
97 cputime_max = cputime; in lll_prof_send()
101 if (cputime < cputime_min) { in lll_prof_send()
102 cputime_min = cputime; in lll_prof_send()
107 prev = ((uint16_t)cputime_prev + cputime) >> 1; in lll_prof_send()
109 cputime_prev = cputime; in lll_prof_send()
133 p->cur = cputime; in lll_prof_send()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_prof.c30 static inline void delta(uint32_t timestamp, uint16_t *cputime);
203 uint16_t latency, cputime, prev; in send() local
231 cputime = radio_tmr_sample_get() - timestamp_latency; in send()
234 if (cputime > cputime_max) { in send()
235 cputime_max = cputime; in send()
239 if (cputime < cputime_min) { in send()
240 cputime_min = cputime; in send()
245 prev = ((uint16_t)cputime_prev + cputime) >> 1; in send()
247 cputime_prev = cputime; in send()
273 p->cur = cputime; in send()
[all …]
/Zephyr-latest/scripts/tests/twister/
Dtest_handlers.py1879 cputime, argument
1887 return cputime if isinstance(cputime, int) else next(cputime)