Home
last modified time | relevance | path

Searched defs:p0 (Results 1 – 5 of 5) sorted by relevance

/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
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
198 #define bi_5pins_with_func(p0, p1, p2, p3, p4, 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_btstack/
Dbtstack_flash_bank.c38 uintptr_t p0; member
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/
Dbootrom.h476 static inline int rom_reboot(uint32_t flags, uint32_t delay_ms, uint32_t p0, uint32_t p1) { in rom_reboot()