Searched refs:MIN (Results 1 – 6 of 6) sorted by relevance
/trusted-firmware-m-3.6.0/platform/ext/target/nxp/common/Native_Driver/drivers/ |
D | fsl_common.h | 227 #if !defined(MIN) 228 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
|
D | fsl_usart.c | 983 bytesToCopy = MIN(bytesToReceive, bytesToCopy); in USART_TransferReceiveNonBlocking()
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/host/src/pal/freertos/ |
D | cc_pal_perf_plat.c | 43 #define MIN(a,b) (a) < (b) ? (a) : (b) macro 158 pCyclesData->min = MIN(pCyclesData->min, cycles); in CC_PalPerfCloseEntry()
|
/trusted-firmware-m-3.6.0/platform/ext/target/nordic_nrf/common/core/cmsis_drivers/ |
D | Driver_USART.c | 158 #ifndef MIN 159 #define MIN(a,b) (((a) <= (b)) ? (a) : (b)); macro 176 uint32_t len = MIN(num - offs, sizeof(ram_buf)); in ARM_USARTx_Send()
|
/trusted-firmware-m-3.6.0/platform/ext/target/arm/musca_s1/ |
D | target_cfg.c | 27 #define MIN(A, B) (((A) < (B)) ? (A) : (B)) macro 384 uintptr_t range_limit = MIN(region_limit, attr_range_limit); in mpc_init_region_with_attr()
|
/trusted-firmware-m-3.6.0/platform/ext/target/nxp/common/Native_Driver/components/serial_manager/ |
D | fsl_component_serial_manager.c | 852 for (uint32_t i = 0; i < MIN(ringBufferLength, remainLength); i++) 863 ringBufferLength = ringBufferLength - MIN(ringBufferLength, remainLength); 1117 …for (serialReadHandle->transfer.soFar = 0U; serialReadHandle->transfer.soFar < MIN(dataLength, len…
|