Home
last modified time | relevance | path

Searched defs:func (Results 1 – 12 of 12) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/
Dbootrom.h272 …rom_connect_internal_flash_fn func = (rom_connect_internal_flash_fn) rom_func_lookup_inline(ROM_FU… in rom_connect_internal_flash() local
303 …rom_flash_exit_xip_fn func = (rom_flash_exit_xip_fn) rom_func_lookup_inline(ROM_FUNC_FLASH_EXIT_XI… in rom_flash_exit_xip() local
339 …rom_flash_range_erase_fn func = (rom_flash_range_erase_fn) rom_func_lookup_inline(ROM_FUNC_FLASH_R… in rom_flash_range_erase() local
364 …rom_flash_range_program_fn func = (rom_flash_range_program_fn) rom_func_lookup_inline(ROM_FUNC_FLA… in rom_flash_range_program() local
386 …rom_flash_flush_cache_fn func = (rom_flash_flush_cache_fn) rom_func_lookup_inline(ROM_FUNC_FLASH_F… in rom_flash_flush_cache() local
402 …rom_flash_enter_cmd_xip_fn func = (rom_flash_enter_cmd_xip_fn) rom_func_lookup_inline(ROM_FUNC_FLA… in rom_flash_enter_cmd_xip() local
425 …rom_set_bootrom_stack_fn func = (rom_set_bootrom_stack_fn) rom_func_lookup_inline(ROM_FUNC_SET_BOO… in rom_set_bootrom_stack() local
477 rom_reboot_fn func = (rom_reboot_fn) rom_func_lookup_inline(ROM_FUNC_REBOOT); in rom_reboot() local
508 …rom_bootrom_state_reset_fn func = (rom_bootrom_state_reset_fn) rom_func_lookup_inline(ROM_FUNC_BOO… in rom_bootrom_state_reset() local
521 …rom_flash_reset_address_trans_fn func = (rom_flash_reset_address_trans_fn) rom_func_lookup_inline(… in rom_flash_reset_address_trans() local
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_runtime/include/pico/
Druntime.h54 #define PICO_RUNTIME_INIT_FUNC(func, priority_string) uintptr_t __used __attribute__((section(".pre… argument
61 #define PICO_RUNTIME_INIT_FUNC_HW(func, priority_string) PICO_RUNTIME_INIT_FUNC(func, priority_stri… argument
62 #define PICO_RUNTIME_INIT_FUNC_RUNTIME(func, priority_string) PICO_RUNTIME_INIT_FUNC(func, priority… argument
64 #define PICO_RUNTIME_INIT_FUNC_PER_CORE(func, priority_string) PICO_RUNTIME_INIT_FUNC(func, "ZZZZZ.… argument
/hal_rpi_pico-latest/src/host/pico_runtime/include/pico/
Druntime.h26 #define PICO_RUNTIME_INIT_FUNC_FLAGS(func, flags, priority_string1, priority_string2) argument
28 #define PICO_RUNTIME_INIT_FUNC_HW(func, priority_string1, priority_string2) PICO_RUNTIME_INIT_FUNC_… argument
29 #define PICO_RUNTIME_INIT_FUNC_RUNTIME(func, priority_string1, priority_string2) PICO_RUNTIME_INIT_… argument
30 #define PICO_RUNTIME_INIT_FUNC_PER_CORE(func, priority_string1, priority_string2) PICO_RUNTIME_INIT… argument
/hal_rpi_pico-latest/src/common/pico_binary_info/include/pico/binary_info/
Dcode.h183 #define bi_1pin_with_func(p0, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
184 #define bi_2pins_with_func(p0, p1, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
185 #define bi_3pins_with_func(p0, p1, p2, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
186 #define bi_4pins_with_func(p0, p1, p2, p3, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
187 #define bi_5pins_with_func(p0, p1, p2, p3, p4, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_M… argument
188 #define bi_pin_range_with_func(plo, phi, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_R… argument
194 #define bi_1pin_with_func(p0, func) __bi_encoded_pins_64_with_func(BI_PINS_… argument
195 #define bi_2pins_with_func(p0, p1, func) __bi_encoded_pins_64_with_func(BI_PINS_… argument
196 #define bi_3pins_with_func(p0, p1, p2, func) __bi_encoded_pins_64_with_func(BI_PINS_… argument
197 #define bi_4pins_with_func(p0, p1, p2, p3, func) __bi_encoded_pins_64_with_func(BI_PINS_… argument
[all …]
/hal_rpi_pico-latest/test/pico_float_test/
Dpico_double_test.c325 #define check1(func,p0) ({ typeof(p0) r = func(p0), r2 = __CONCAT(__real_, func)(p0); test_assert(r… argument
326 #define check2(func,p0,p1) ({ typeof(p0) r = func(p0,p1), r2 = __CONCAT(__real_, func)(p0,p1); test… argument
327 #define check_close1(func,p0) ({ typeof(p0) r = func(p0), r2 = __CONCAT(__real_, func)(p0); if (isn… argument
328 #define check_close2(func,p0,p1) ({ typeof(p0) r = func(p0,p1), r2 = __CONCAT(__real_, func)(p0,p1)… argument
330 #define check1(func,p0) func(p0) argument
331 #define check2(func,p0,p1) func(p0,p1) argument
332 #define check_close1(func,p0) func(p0) argument
333 #define check_close2(func,p0,p1) func(p0,p1) argument
Dpico_float_test.c328 #define check1(func,p0) ({ typeof(p0) r = func(p0), r2 = __CONCAT(__real_, func)(p0); test_assert(r… argument
329 #define check2(func,p0,p1) ({ typeof(p0) r = func(p0,p1), r2 = __CONCAT(__real_, func)(p0,p1); test… argument
330 #define check_close1(func,p0) ({ typeof(p0) r = func(p0), r2 = __CONCAT(__real_, func)(p0); if (isn… argument
331 #define check_close2(func,p0,p1) ({ typeof(p0) r = func(p0,p1), r2 = __CONCAT(__real_, func)(p0,p1)… argument
333 #define check1(func,p0) func(p0) argument
334 #define check2(func,p0,p1) func(p0,p1) argument
335 #define check_close1(func,p0) func(p0) argument
336 #define check_close2(func,p0,p1) func(p0,p1) argument
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/
Dbootrom.c50 rom_reset_usb_boot_fn func = (rom_reset_usb_boot_fn) rom_func_lookup(ROM_FUNC_RESET_USB_BOOT); in rom_reset_usb_boot() local
69 rom_reset_usb_boot_fn func = (rom_reset_usb_boot_fn) rom_func_lookup(ROM_FUNC_RESET_USB_BOOT); in rom_reset_usb_boot_extra() local
89 rom_get_sys_info_fn func = (rom_get_sys_info_fn) rom_func_lookup_inline(ROM_FUNC_GET_SYS_INFO); in rom_get_boot_random() local
/hal_rpi_pico-latest/src/host/pico_platform/include/pico/
Dplatform.h25 #define __not_in_flash_func(func) func argument
26 #define __no_inline_not_in_flash_func(func) func argument
/hal_rpi_pico-latest/src/rp2_common/pico_clib_interface/
Dpicolibc_interface.c60 void __weak __assert_func(const char *file, int line, const char *func, const char *failedexpr) { in __assert_func()
Dnewlib_interface.c163 void __weak __assert_func(const char *file, int line, const char *func, const char *failedexpr) { in __assert_func()
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/
Dasync_context_freertos.c182 uint32_t (*func)(void *param); member
Dasync_context_threadsafe_background.c93 uint32_t (*func)(void *param); member