Searched refs:EFM32_MIN (Results 1 – 1 of 1) sorted by relevance
58 #define EFM32_MIN(a, b) ((a) < (b) ? (a) : (b)) macro79 #define EFM32_MIN(a, b) ({ __typeof__(a) _a = (a); __typeof__(b) _b = (b); _a < _b ? _a : _b; })
Completed in 3 milliseconds