Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dstrto.c53 register int any, cutlim; variable
107 cutlim = cutoff % base;
111 if (cutlim > 0)
113 cutlim -= base;
116 cutlim = -cutlim;
132 if (acc < cutoff || (acc == cutoff && c > cutlim))
147 if (acc > cutoff || (acc == cutoff && c > cutlim))
194 register int any, cutlim; local
223 cutlim = ULLONG_MAX % (ULONGLONG_T)base;
236 if (acc > cutoff || (acc == cutoff && c > cutlim))
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrtoul.c60 int neg, c, any, cutlim; in strtoul() local
84 cutlim = (u_long)ULONG_MAX % (u_long)base; in strtoul()
94 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dconf.c4085 register int neg = 0, any, cutlim; local
4127 cutlim = cutoff % (unsigned long) base;
4138 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)