Home
last modified time | relevance | path

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

/titanic_50/usr/src/cmd/sendmail/libsm/
H A Dstrto.c55 register int any, cutlim; variable
109 cutlim = cutoff % base;
113 if (cutlim > 0)
115 cutlim -= base;
118 cutlim = -cutlim;
134 if (acc < cutoff || (acc == cutoff && c > cutlim))
149 if (acc > cutoff || (acc == cutoff && c > cutlim))
196 register int any, cutlim; local
225 cutlim = ULLONG_MAX % (ULONGLONG_T)base;
238 if (acc > cutoff || (acc == cutoff && c > cutlim))
/titanic_50/usr/src/lib/libresolv2/common/bsd/
H A Dstrtoul.c65 int neg, c, any, cutlim; in strtoul() local
89 cutlim = (u_long)ULONG_MAX % (u_long)base; in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
/titanic_50/usr/src/cmd/sendmail/src/
H A Dconf.c4084 register int neg = 0, any, cutlim; local
4126 cutlim = cutoff % (unsigned long) base;
4137 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)