Home
last modified time | relevance | path

Searched refs:hw_divider_result_threadlocal (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/src/host/hardware_divider/include/hardware/
Ddivider.h50 extern __thread divmod_result_t hw_divider_result_threadlocal;
62 hw_divider_result_threadlocal = hw_divider_divmod_s32(a, b); in hw_divider_divmod_s32_start()
75 hw_divider_result_threadlocal = hw_divider_divmod_u32(a, b); in hw_divider_divmod_u32_start()
86 return hw_divider_result_threadlocal; in hw_divider_result_wait()
97 return hw_divider_result_threadlocal; in hw_divider_result_nowait()
314 *dest = hw_divider_result_threadlocal; in hw_divider_save_state()
325 hw_divider_result_threadlocal = *src; in hw_divider_restore_state()
/hal_rpi_pico-latest/src/host/hardware_divider/
Ddivider.c9 __thread uint64_t hw_divider_result_threadlocal; variable