Home
last modified time | relevance | path

Searched refs:multmax (Results 1 – 5 of 5) sorted by relevance

/titanic_50/usr/src/common/util/
H A Dstrtoul.c56 unsigned long multmax; in ddi_strtoul() local
105 multmax = ULONG_MAX / (unsigned long)base; in ddi_strtoul()
108 if (val > multmax) in ddi_strtoul()
H A Dstrtoull.c56 u_longlong_t multmax; in ddi_strtoull() local
105 multmax = ULLONG_MAX / (u_longlong_t)base; in ddi_strtoull()
108 if (val > multmax) in ddi_strtoull()
/titanic_50/usr/src/lib/libc/port/i18n/
H A Dwcstoul.c64 _WULONG_T multmax; in wcstoull() local
106 multmax = _WULONG_MAX / (_WULONG_T)base; in wcstoull()
110 if (val > multmax) in wcstoull()
/titanic_50/usr/src/lib/libuutil/common/
H A Duu_strtoint.c47 uint64_t multmax; in strtoint() local
103 multmax = (uint64_t)UINT64_MAX / (uint64_t)base; in strtoint()
116 if (val > multmax) in strtoint()
/titanic_50/usr/src/cmd/mdb/common/mdb/
H A Dmdb_string.c115 uintmax_t multmax = (uintmax_t)ULLONG_MAX / (uintmax_t)(uint_t)base; in strtonum() local
134 if (val > multmax) in strtonum()