Home
last modified time | relevance | path

Searched refs:MAX (Results 1 – 12 of 12) sorted by relevance

/hal_rpi_pico-latest/src/host/pico_platform/include/pico/
Dplatform.h110 #ifndef MAX
111 #define MAX(a, b) ((a)>(b)?(a):(b)) macro
/hal_rpi_pico-latest/src/rp2_common/pico_platform_compiler/include/pico/platform/
Dcompiler.h140 #ifndef MAX
141 #define MAX(a, b) ((a)>(b)?(a):(b)) macro
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2040/
Dmemmap_no_flash.ld235 PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) );
237 PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) );
Dmemmap_blocked_ram.ld272 PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) );
274 PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) );
Dmemmap_copy_to_ram.ld273 PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) );
275 PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) );
Dmemmap_default.ld272 PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) );
274 PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) );
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2350/
Dmemmap_no_flash.ld240 PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) );
242 PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) );
Dmemmap_copy_to_ram.ld293 PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) );
295 PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) );
Dmemmap_default.ld286 PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) );
288 PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) );
/hal_rpi_pico-latest/test/pico_time_test/
Dpico_time_test.c132 PICOTEST_CHECK(timeouts[i].fired_count != 1 || fired_at >= MAX(RESOLUTION_ALLOWANCE, in main()
135 …PICOTEST_CHECK(timeouts[i].fired_count != 1 || fired_at > MAX(RESOLUTION_ALLOWANCE, last_fired_at[… in main()
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/
Dcyw43_bus_pio_spi.c118 const uint max_gpio = MAX(CYW43_PIN_WL_CLOCK, MAX(CYW43_PIN_WL_DATA_IN, CYW43_PIN_WL_DATA_OUT)); in cyw43_spi_init()
/hal_rpi_pico-latest/src/rp2_common/pico_stdio_rtt/SEGGER/RTT/
DSEGGER_RTT.c180 #ifndef MAX
181 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro