Home
last modified time | relevance | path

Searched defs:t (Results 1 – 25 of 113) sorted by relevance

12345

/Zephyr-Core-3.7.0/include/zephyr/sys/
Dtime_units.h357 #define k_sec_to_cyc_floor32(t) \ argument
373 #define k_sec_to_cyc_floor64(t) \ argument
389 #define k_sec_to_cyc_near32(t) \ argument
405 #define k_sec_to_cyc_near64(t) \ argument
421 #define k_sec_to_cyc_ceil32(t) \ argument
437 #define k_sec_to_cyc_ceil64(t) \ argument
453 #define k_sec_to_ticks_floor32(t) \ argument
469 #define k_sec_to_ticks_floor64(t) \ argument
485 #define k_sec_to_ticks_near32(t) \ argument
501 #define k_sec_to_ticks_near64(t) \ argument
[all …]
/Zephyr-Core-3.7.0/include/zephyr/
Dsys_clock.h114 #define Z_TIMEOUT_TICKS(t) ((k_timeout_t) { (t) }) argument
116 #define Z_TIMEOUT_TICKS(t) ((k_timeout_t) { .ticks = (t) }) argument
121 # define Z_TIMEOUT_MS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ms_to_ticks_ceil64(MAX(t, 0))) argument
122 # define Z_TIMEOUT_US(t) Z_TIMEOUT_TICKS((k_ticks_t)k_us_to_ticks_ceil64(MAX(t, 0))) argument
123 # define Z_TIMEOUT_NS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ns_to_ticks_ceil64(MAX(t, 0))) argument
124 # define Z_TIMEOUT_CYC(t) Z_TIMEOUT_TICKS((k_ticks_t)k_cyc_to_ticks_ceil64(MAX(t, 0))) argument
125 # define Z_TIMEOUT_MS_TICKS(t) ((k_ticks_t)k_ms_to_ticks_ceil64(MAX(t, 0))) argument
127 # define Z_TIMEOUT_MS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ms_to_ticks_ceil32(MAX(t, 0))) argument
128 # define Z_TIMEOUT_US(t) Z_TIMEOUT_TICKS((k_ticks_t)k_us_to_ticks_ceil32(MAX(t, 0))) argument
129 # define Z_TIMEOUT_NS(t) Z_TIMEOUT_TICKS((k_ticks_t)k_ns_to_ticks_ceil32(MAX(t, 0))) argument
[all …]
/Zephyr-Core-3.7.0/kernel/
Dtimeout.c41 sys_dnode_t *t = sys_dlist_peek_head(&timeout_list); in first() local
46 static struct _timeout *next(struct _timeout *t) in next()
53 static void remove_timeout(struct _timeout *t) in remove_timeout()
114 struct _timeout *t; in z_add_timeout() local
163 for (struct _timeout *t = first(); t != NULL; t = next(t)) { in timeout_rem() local
228 struct _timeout *t; in sys_clock_announce() local
263 uint64_t t = 0U; in sys_clock_tick_get() local
/Zephyr-Core-3.7.0/tests/subsys/logging/log_link_order/src/
Dmain.c74 k_timeout_t t; in check_msg() local
90 #define CHECK_MSG(t) check_msg(t, __LINE__) argument
126 log_timestamp_t t = timestamp_get(); in ZTEST() local
159 log_timestamp_t t = timestamp_get(); in ZTEST() local
/Zephyr-Core-3.7.0/lib/posix/options/
Dpthread.c93 static inline void posix_thread_q_set(struct posix_thread *t, enum posix_thread_qid qid) in posix_thread_q_set()
108 static inline enum posix_thread_qid posix_thread_q_get(struct posix_thread *t) in posix_thread_q_get()
129 static inline size_t posix_thread_to_offset(struct posix_thread *t) in posix_thread_to_offset()
141 struct posix_thread *t; in to_posix_thread() local
178 struct posix_thread *t; in pthread_self() local
203 struct posix_thread *t = NULL; in __z_pthread_cleanup_push() local
221 struct posix_thread *t = NULL; in __z_pthread_cleanup_pop() local
460 static void posix_thread_finalize(struct posix_thread *t, void *retval) in posix_thread_finalize()
497 struct posix_thread *t = CONTAINER_OF(k_current_get(), struct posix_thread, thread); in zephyr_thread_wrapper() local
514 struct posix_thread *t; in posix_thread_recycle() local
[all …]
/Zephyr-Core-3.7.0/subsys/shell/modules/
Ddate_service.c23 static void date_print(const struct shell *sh, struct tm *t) in date_print()
36 static int get_y_m_d(const struct shell *sh, struct tm *t, char *date_str) in get_y_m_d()
88 static int get_h_m_s(const struct shell *sh, struct tm *t, char *time_str) in get_h_m_s()
/Zephyr-Core-3.7.0/subsys/testsuite/include/zephyr/
Dtimestamp.h35 uint32_t t; in TIME_STAMP_DELTA_GET() local
55 uint32_t t = OS_GET_TIME(); in bench_test_init() local
/Zephyr-Core-3.7.0/arch/arc/core/
Dtimestamp.c29 uint64_t t; in z_tsc_read() local
/Zephyr-Core-3.7.0/scripts/pylib/twister/
Dexpr_parser.py50 def t_HEX(t): argument
55 def t_INTEGER(t): argument
60 def t_STR(t): argument
90 def t_SYMBOL(t): argument
97 def t_error(t): argument
/Zephyr-Core-3.7.0/tests/ztest/busy_sim/src/
Dmain.c15 uint32_t t = k_uptime_get_32(); in ZTEST() local
/Zephyr-Core-3.7.0/drivers/dac/
Ddac_ltc166x.c107 #define INST_DT_LTC166X(inst, t) DT_INST(inst, lltc_ltc##t) argument
109 #define LTC166X_DEVICE(t, n, res, nchan) \ argument
136 #define INST_DT_LTC166X_FOREACH(t, inst_expr) \ argument
Ddac_dacx3608.c241 #define INST_DT_DACX3608(inst, t) DT_INST(inst, ti_dac##t) argument
243 #define DACX3608_DEVICE(t, n, res) \ argument
268 #define INST_DT_DACX3608_FOREACH(t, inst_expr) \ argument
/Zephyr-Core-3.7.0/boards/qemu/cortex_m0/
Dnrf_timer_timer.c100 static void handle_next_tick_case(uint32_t t) in handle_next_tick_case()
119 uint32_t t = counter(); in set_absolute_ticks() local
150 uint32_t t = get_comparator(); in timer0_nrf_isr() local
/Zephyr-Core-3.7.0/tests/drivers/timer/nrf_grtc_timer/src/
Dmain.c17 k_timeout_t t = K_MSEC(1); in ZTEST() local
/Zephyr-Core-3.7.0/scripts/native_simulator/common/src/include/
Dnsi_hws_models_if.h36 #define NSI_HW_EVENT(t, fn, prio) \ argument
/Zephyr-Core-3.7.0/tests/subsys/sip_svc/src/
Dmain.c56 uint64_t t = 0; in sip_svc_send_sync_request() local
125 uint64_t t = 0; in sip_svc_send_async_request() local
209 struct total_time t[SIP_SVC_CLIENT_INSTANCES] = {0}; in ZTEST() local
/Zephyr-Core-3.7.0/drivers/watchdog/
Dwdt_sifive.c75 uint32_t t; in wdt_sifive_set_max_timeout() local
90 uint32_t t; in wdt_sifive_isr() local
121 uint32_t t, mode; in wdt_sifive_setup() local
190 uint32_t mode = 0, t; in wdt_sifive_install_timeout() local
/Zephyr-Core-3.7.0/tests/kernel/sched/schedule_api/src/
Dtest_sched_timeslice_reset.c52 uint32_t t = cycles_delta(&elapsed_slice); in thread_time_slice() local
131 struct k_thread t[NUM_THREAD]; in ZTEST() local
/Zephyr-Core-3.7.0/doc/_static/js/
Ddark-mode-toggle.min.mjs2 const e=document;const t=localStorage;const i="prefers-color-scheme";const a="media";const s="light… argument
/Zephyr-Core-3.7.0/samples/kernel/condition_variables/simple/src/
Dmain.c15 static struct k_thread t[NUM_THREADS]; variable
/Zephyr-Core-3.7.0/tests/benchmarks/sys_kernel/src/
Dmem_slab.c71 uint32_t t; in mem_slab_test() local
/Zephyr-Core-3.7.0/tests/ztest/ztress/src/
Dmain.c30 k_timeout_t t = Z_TIMEOUT_TICKS(20); in ZTEST() local
136 k_timeout_t t = Z_TIMEOUT_TICKS(20); in ZTEST() local
/Zephyr-Core-3.7.0/tests/drivers/rtc/rtc_api/src/
Dtest_y2k.c39 const time_t t[] = { in ZTEST() local
/Zephyr-Core-3.7.0/tests/lib/mpsc_pbuf/src/
Dmain.c124 union test_item *t; in item_put_no_overwrite() local
180 union test_item *t; in item_put_saturate() local
225 uint32_t t = get_cyc(); in benchmark_item_put() local
274 union test_item *t; in item_put_ext_no_overwrite() local
345 union test_item *t; in item_put_ext_saturate() local
395 uint32_t t = get_cyc(); in benchmark_item_put_ext() local
992 struct test_data_ext *t; in t_entry() local
1029 k_ticks_t t = k_thread_timeout_remaining_ticks(tids[i]); in start_threads() local
1059 union test_item *t = (union test_item *)mpsc_pbuf_claim(&buffer); in ZTEST() local
1066 struct test_data_ext *t = in ZTEST() local
[all …]
/Zephyr-Core-3.7.0/tests/drivers/timer/nrf_rtc_timer/src/
Dmain.c89 static void test_timeout(int32_t chan, k_timeout_t t, bool ext_window) in test_timeout()
150 uint64_t t = 1000; in ZTEST() local
181 k_timeout_t t = K_MSEC(1); in ZTEST() local
224 k_timeout_t t; in ZTEST() local
291 k_timeout_t t = K_USEC(40 + x); in ZTEST() local

12345