Searched refs:cutlim (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dstrto.c55 register int any, cutlim; local
98 ** is 10, cutoff will be set to 922337203685477580 and cutlim to
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
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrtoul.c65 int neg, c, any, cutlim; local
89 cutlim = (u_long)ULONG_MAX % (u_long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstrtoul.c57 int neg, any, cutlim; local
90 cutlim = ULONG_MAX % base;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtol.c56 int neg = 0, any, cutlim; local
94 * cutoff will be set to 214748364 and cutlim to either
103 cutlim = cutoff % (unsigned long)base;
116 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dconf.c4084 register int neg = 0, any, cutlim; local
4117 ** cutoff will be set to 214748364 and cutlim to either
4126 cutlim = cutoff % (unsigned long) base;
4137 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)

Completed in 88 milliseconds