Home
last modified time | relevance | path

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

/freebsd-12.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-12.1/contrib/gcc/
H A Dtree-vrp.c229 tree type_max = TYPE_MAX_VALUE (TREE_TYPE (val)); in vrp_val_is_max() local
231 return (val == type_max in vrp_val_is_max()
232 || (type_max != NULL_TREE in vrp_val_is_max()
233 && operand_equal_p (val, type_max, 0))); in vrp_val_is_max()