/lk-master/platform/armemu/ |
A D | timer.c | 32 lk_bigtime_t time; in current_time_hires() local 34 time = *REG(SYSINFO_TIME_SECS) * 1000000ULL; in current_time_hires() 35 time += *REG(SYSINFO_TIME_USECS); in current_time_hires() 37 return time; in current_time_hires() 41 lk_time_t time; in current_time() local 43 time = *REG(SYSINFO_TIME_SECS) * 1000; in current_time() 44 time += *REG(SYSINFO_TIME_USECS) / 1000; in current_time() 46 return time; in current_time()
|
/lk-master/external/lib/lwip/core/ |
A D | timers.c | 279 timeout->time = msecs; in sys_timeout_debug() 291 if (next_timeout->time > msecs) { in sys_timeout_debug() 292 next_timeout->time -= msecs; in sys_timeout_debug() 297 timeout->time -= t->time; in sys_timeout_debug() 298 if (t->next == NULL || t->next->time > timeout->time) { in sys_timeout_debug() 300 t->next->time -= timeout->time; in sys_timeout_debug() 340 t->next->time += t->time; in sys_untimeout() 382 diff -= tmptimeout->time; in sys_check_timeouts() 434 if (next_timeout->time > 0) { in sys_timeouts_mbox_fetch() 471 next_timeout->time -= time_needed; in sys_timeouts_mbox_fetch() [all …]
|
/lk-master/platform/pc/ |
A D | timer.c | 55 lk_time_t time; in current_time() local 58 time = (lk_time_t) (timer_current_time >> 32); in current_time() 60 return time; in current_time() 64 lk_bigtime_t time; in current_time_hires() local 67 time = (lk_bigtime_t) ((timer_current_time >> 22) * 1000) >> 10; in current_time_hires() 69 return time; in current_time_hires() 76 lk_time_t time = current_time(); in os_timer_tick() local 85 return t_callback(callback_arg, time); in os_timer_tick()
|
/lk-master/platform/zynq/ |
A D | timer.c | 73 lk_bigtime_t time; 75 time = ticks * periodic_interval * 1000ULL; 77 return time; 81 lk_time_t time; 83 time = ticks * periodic_interval; 85 return time;
|
/lk-master/dev/timer/arm_cortex_a9/ |
A D | arm_cortex_a9_timer.c | 83 lk_bigtime_t time; in current_time_hires() local 85 time = u64_mul_u64_fp32_64(get_global_val(), timer_freq_usec_conversion_inverse); in current_time_hires() 87 return time; in current_time_hires() 91 lk_time_t time; in current_time() local 93 time = u32_mul_u64_fp32_64(get_global_val(), timer_freq_msec_conversion_inverse); in current_time() 95 return time; in current_time()
|
/lk-master/platform/mediatek/mt6797/ |
A D | timer.c | 81 lk_bigtime_t time; in current_time_hires() local 83 time = (lk_bigtime_t)ticks * 1000; in current_time_hires() 84 return time; in current_time_hires()
|
/lk-master/platform/mediatek/mt6735/ |
A D | timer.c | 87 lk_bigtime_t time; in current_time_hires() local 89 time = (lk_bigtime_t)ticks * 1000; in current_time_hires() 90 return time; in current_time_hires()
|
/lk-master/tools/ |
A D | nettool.py | 5 import time 25 time.sleep(100)
|
/lk-master/external/platform/pico/common/pico_time/ |
A D | time.c | 77 static alarm_id_t add_alarm_under_lock(alarm_pool_t *pool, absolute_time_t time, alarm_callback_t c… in add_alarm_under_lock() argument 88 entry->target = time; in add_alarm_under_lock() 92 bool is_missed = hardware_alarm_set_target(pool->hardware_alarm_num, time); in add_alarm_under_lock() 184 alarm_id_t alarm_pool_add_alarm_at(alarm_pool_t *pool, absolute_time_t time, alarm_callback_t callb… in alarm_pool_add_alarm_at() argument 192 … pheap_node_id_t id = add_alarm_under_lock(pool, time, callback, user_data, 0, false, &missed); in alarm_pool_add_alarm_at() 208 time = delayed_by_us(time, -repeat); in alarm_pool_add_alarm_at() 210 time = delayed_by_us(get_absolute_time(), repeat); in alarm_pool_add_alarm_at()
|
/lk-master/external/platform/nrfx/drivers/src/ |
A D | nrfx_systick.c | 122 p_state->time = nrf_systick_val_get(); in nrfx_systick_get() 129 const uint32_t diff = NRF_SYSTICK_VAL_MASK & ((p_state->time) - nrf_systick_val_get()); in nrfx_systick_test()
|
/lk-master/external/platform/pico/common/pico_time/include/pico/ |
A D | time.h | 422 alarm_id_t alarm_pool_add_alarm_at(alarm_pool_t *pool, absolute_time_t time, alarm_callback_t callb… 502 static inline alarm_id_t add_alarm_at(absolute_time_t time, alarm_callback_t callback, void *user_d… in add_alarm_at() argument 503 … return alarm_pool_add_alarm_at(alarm_pool_get_default(), time, callback, user_data, fire_if_past); in add_alarm_at()
|
/lk-master/external/platform/nrfx/drivers/include/ |
A D | nrfx_systick.h | 66 uint32_t time; //!< Registered time value. member
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | timers.h | 69 u32_t time; member
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_dma_mem/example/ |
A D | readme.dox | 43 * higher data transfer performance. A time 50% smaller than another time would
|
/lk-master/tools/moot/ |
A D | mtldr | 30 import time 292 time.sleep(0.5)
|
/lk-master/external/platform/nrfx/doc/ |
A D | main_page.dox | 57 The drivers use both dynamic (run time) and static (compile time) configuration.
|
/lk-master/ |
A D | README.md | 13 - Large number of utility components selectable at build time
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_ritimer/example/ |
A D | readme.dox | 36 * RIT. The example sets up a periodic interrupt at a selected time
|
/lk-master/arch/x86/32/ |
A D | kernel.ld | 96 /* used by the heap and other early boot time allocators */
|
/lk-master/arch/x86/64/ |
A D | kernel.ld | 95 /* used by the heap and other early boot time allocators */
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_pmu/example/ |
A D | readme.dox | 38 * The wakeup timer is configurable, allowing the user to select the time delay
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_pmu_rom/example/ |
A D | readme.dox | 38 * The wakeup timer is configurable, allowing the user to select the time delay
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_iap/example/ |
A D | readme.dox | 35 * The IAP example demonstrates programming a FLASH block during run-time. For this
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_flashiap/example/ |
A D | readme.dox | 36 * The IAP example demonstrates programming a FLASH block during run-time and
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_i2cs_interrupt/example/ |
A D | readme.dox | 57 * support inside the I2C interrupt handler in real-time.<br>
|