Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/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-Core-3.7.0/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_prof.c26 static inline void delta(uint32_t timestamp, uint8_t *cputime);
158 uint8_t latency, cputime, prev; in send() local
190 cputime = radio_tmr_sample_get() - timestamp_latency; in send()
193 if (cputime > cputime_max) { in send()
194 cputime_max = cputime; in send()
198 if (cputime < cputime_min) { in send()
199 cputime_min = cputime; in send()
204 prev = ((uint16_t)cputime_prev + cputime) >> 1; in send()
206 cputime_prev = cputime; in send()
232 p->cur = cputime; in send()
[all …]
/Zephyr-Core-3.7.0/scripts/tests/twister/
Dtest_handlers.py1865 cputime, argument
1873 return cputime if isinstance(cputime, int) else next(cputime)