Searched refs:cutoff (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dstrto.c53 register LONGLONG_T acc, cutoff; local
90 ** Compute the cutoff value between legal numbers and illegal
98 ** is 10, cutoff will be set to 922337203685477580 and cutlim to
108 cutoff = neg ? LLONG_MIN : LLONG_MAX;
109 cutlim = cutoff % base;
110 cutoff /= base;
116 cutoff += 1;
134 if (acc < cutoff || (acc == cutoff && c > cutlim))
149 if (acc > cutoff || (ac
193 register ULONGLONG_T acc, cutoff; local
[all...]
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dstrtoul.c64 u_long acc, cutoff; local
88 cutoff = (u_long)ULONG_MAX / (u_long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/osnet-11/usr/src/cmd/sendmail/src/
H A Dconf.c4081 register unsigned long cutoff; local
4107 ** Compute the cutoff value between legal numbers and illegal
4115 ** cutoff will be set to 214748364 and cutlim to either
4123 cutoff = neg ? -(unsigned long) LONG_MIN : LONG_MAX;
4124 cutlim = cutoff % (unsigned long) base;
4125 cutoff /= (unsigned long) base;
4135 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)

Completed in 49 milliseconds