Home
last modified time | relevance | path

Searched refs:type_max (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_subr.c716 uint64_t type_max; in bhnd_nvram_parse_int() local
805 type_max = (uint64_t)UINT8_MAX; in bhnd_nvram_parse_int()
808 type_max = (uint64_t)UINT16_MAX; in bhnd_nvram_parse_int()
811 type_max = (uint64_t)UINT32_MAX; in bhnd_nvram_parse_int()
814 type_max = (uint64_t)UINT64_MAX; in bhnd_nvram_parse_int()
819 type_max = (uint64_t)UINT8_MAX; in bhnd_nvram_parse_int()
821 type_max = -(uint64_t)INT8_MIN; in bhnd_nvram_parse_int()
823 type_max = (uint64_t)INT8_MAX; in bhnd_nvram_parse_int()
832 type_max = (uint64_t)INT16_MAX; in bhnd_nvram_parse_int()
841 type_max = (uint64_t)INT32_MAX; in bhnd_nvram_parse_int()
[all …]
/freebsd-13.1/lib/msun/src/
H A Ds_lround.c53 static const type type_max = (type)DTYPE_MAX; variable
56 #define INRANGE(x) (dtype_max - type_max != 0.5 || \
/freebsd-13.1/sys/compat/linuxkpi/common/include/linux/
H A Dkernel.h649 #define type_max(datatype) ( \ macro