Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/util/
H A Dstrtoul.c66 unsigned long multmax; in ddi_strtoul() local
116 multmax = ULONG_MAX / (unsigned long)base; in ddi_strtoul()
119 if (val > multmax) in ddi_strtoul()
H A Dstrtoull.c68 u_longlong_t multmax; in ddi_strtoull() local
118 multmax = ULLONG_MAX / (u_longlong_t)base; in ddi_strtoull()
121 if (val > multmax) in ddi_strtoull()
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwcstoul.c62 _WULONG_T multmax; in wcstoull() local
104 multmax = _WULONG_MAX / (_WULONG_T)base; in wcstoull()
108 if (val > multmax) in wcstoull()
/illumos-gate/usr/src/lib/libuutil/common/
H A Duu_strtoint.c45 uint64_t multmax; in strtoint() local
101 multmax = (uint64_t)UINT64_MAX / (uint64_t)base; in strtoint()
114 if (val > multmax) in strtoint()
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_string.c114 uintmax_t multmax = (uintmax_t)ULLONG_MAX / (uintmax_t)(uint_t)base; in mdb_strtonum() local
133 if (val > multmax) in mdb_strtonum()