Home
last modified time | relevance | path

Searched refs:min (Results 1 – 6 of 6) sorted by relevance

/loramac-node-2.7.6/src/boards/mcu/
Dutilities.c48 int32_t randr( int32_t min, int32_t max ) in randr() argument
50 return ( int32_t )rand1( ) % ( max - min + 1 ) + min; in randr()
/loramac-node-2.7.6/src/boards/mcu/saml21/hal/include/
Dhpl_calendar.h111 uint8_t min; member
/loramac-node-2.7.6/src/boards/
Dutilities.h101 int32_t randr( int32_t min, int32_t max );
/loramac-node-2.7.6/src/boards/mcu/saml21/hal/utils/include/
Dutils.h352 #define min(x, y) ((x) > (y) ? (y) : (x)) macro
/loramac-node-2.7.6/src/mac/region/
DRegionCommon.h352 uint8_t RegionCommonValueInRange( int8_t value, int8_t min, int8_t max );
DRegionCommon.c244 uint8_t RegionCommonValueInRange( int8_t value, int8_t min, int8_t max ) in RegionCommonValueInRange() argument
246 if( ( value >= min ) && ( value <= max ) ) in RegionCommonValueInRange()