Home
last modified time | relevance | path

Searched refs:timing_counter_get (Results 1 – 16 of 16) sorted by relevance

/Zephyr-Core-3.5.0/tests/benchmarks/latency_measure/src/
Dthread.c30 timestamp_start_suspend_c = timing_counter_get(); in thread_suspend_resume()
34 timestamp_start_resume_c = timing_counter_get(); in thread_suspend_resume()
44 timestamp_start_create_c = timing_counter_get(); in suspend_resume()
50 timestamp_end_create_c = timing_counter_get(); in suspend_resume()
53 timestamp_start_start_c = timing_counter_get(); in suspend_resume()
56 timestamp_end_suspend_c = timing_counter_get(); in suspend_resume()
58 timestamp_end_resume_c = timing_counter_get(); in suspend_resume()
77 timestamp_start_abort_1 = timing_counter_get(); in suspend_resume()
79 timestamp_end_abort_1 = timing_counter_get(); in suspend_resume()
Dsema_test_signal_release.c39 timestamp_start_sema_t_c = timing_counter_get(); in thread_sema_test1()
41 timestamp_end_sema_g_c = timing_counter_get(); in thread_sema_test1()
57 timestamp_end_sema_t_c = timing_counter_get(); in sema_context_switch()
62 timestamp_start_sema_g_c = timing_counter_get(); in sema_context_switch()
93 timestamp_start = timing_counter_get(); in sema_test_signal()
99 timestamp_end = timing_counter_get(); in sema_test_signal()
115 timestamp_start = timing_counter_get(); in sema_test_signal()
121 timestamp_end = timing_counter_get(); in sema_test_signal()
Dmutex_lock_unlock.c39 timestamp_start = timing_counter_get(); in mutex_lock_unlock()
45 timestamp_end = timing_counter_get(); in mutex_lock_unlock()
59 timestamp_start = timing_counter_get(); in mutex_lock_unlock()
65 timestamp_end = timing_counter_get(); in mutex_lock_unlock()
Dheap_malloc_free.c33 heap_malloc_start_time = timing_counter_get(); in heap_malloc_free()
36 heap_malloc_end_time = timing_counter_get(); in heap_malloc_free()
45 heap_free_start_time = timing_counter_get(); in heap_malloc_free()
47 heap_free_end_time = timing_counter_get(); in heap_malloc_free()
Dint_to_thread.c39 timestamp_start = timing_counter_get(); in latency_test_isr()
54 timestamp_end = timing_counter_get(); in make_int()
Dint_to_thread_evt.c42 timestamp_start = timing_counter_get(); in latency_test_isr()
49 timestamp_end = timing_counter_get(); in worker()
Dthread_switch_yield.c67 timestamp_start = timing_counter_get(); in thread_switch_yield()
77 timestamp_end = timing_counter_get(); in thread_switch_yield()
Dcoop_ctx_switch.c58 timestamp_start = timing_counter_get(); in thread_one()
66 timestamp_end = timing_counter_get(); in thread_one()
/Zephyr-Core-3.5.0/tests/drivers/disk/disk_performance/src/
Dmain.c98 start_time = timing_counter_get(); in read_helper()
103 end_time = timing_counter_get(); in read_helper()
158 start_time = timing_counter_get(); in write_helper()
162 end_time = timing_counter_get(); in write_helper()
223 start_time = timing_counter_get(); in ZTEST()
231 end_time = timing_counter_get(); in ZTEST()
274 start_time = timing_counter_get(); in ZTEST()
283 end_time = timing_counter_get(); in ZTEST()
/Zephyr-Core-3.5.0/doc/kernel/timing_functions/
Dindex.rst29 3. Call :c:func:`timing_counter_get` to mark the start of code
32 4. Call :c:func:`timing_counter_get` to mark the end of code
65 start_time = timing_counter_get();
69 end_time = timing_counter_get();
/Zephyr-Core-3.5.0/tests/subsys/rtio/rtio_api/src/
Dtest_rtio_mpsc.c198 start_time = timing_counter_get(); in ZTEST()
206 end_time = timing_counter_get(); in ZTEST()
Dtest_rtio_spsc.c228 start_time = timing_counter_get(); in ZTEST()
241 end_time = timing_counter_get(); in ZTEST()
Dtest_rtio_api.c610 start_time = timing_counter_get(); in _test_rtio_throughput()
620 end_time = timing_counter_get(); in _test_rtio_throughput()
/Zephyr-Core-3.5.0/include/zephyr/timing/
Dtiming.h77 static inline timing_t timing_counter_get(void) in timing_counter_get() function
/Zephyr-Core-3.5.0/kernel/
Dmmu.c1011 time_start = timing_counter_get(); in do_backing_store_page_in()
1023 time_end = timing_counter_get(); in do_backing_store_page_in()
1042 time_start = timing_counter_get(); in do_backing_store_page_out()
1054 time_end = timing_counter_get(); in do_backing_store_page_out()
1350 time_start = timing_counter_get(); in do_eviction_select()
1362 time_end = timing_counter_get(); in do_eviction_select()
Dusage.c26 now = (uint32_t)timing_counter_get(); in usage_now()