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

/illumos-gate/usr/src/boot/lib/libstand/
H A Dstrtol.c55 unsigned long cutoff; local
86 * Compute the cutoff value between legal numbers and illegal
94 * cutoff will be set to 214748364 and cutlim to either
102 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
103 cutlim = cutoff % (unsigned long)base;
104 cutoff /= (unsigned long)base;
116 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c56 unsigned long cutoff; local
89 cutoff = ULONG_MAX / base;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/illumos-gate/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...]
/illumos-gate/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))
/illumos-gate/usr/src/cmd/streams/log/
H A Dstrclean.c49 static time_t cutoff; variable
113 cutoff = time(NULL) - age * NSECDAY;
142 * and that are older than 'cutoff' (these are globals above).
153 if (stp->st_mtime >= cutoff)
/illumos-gate/usr/src/cmd/news/
H A Dnews.c353 long cutoff; local
372 cutoff = stat (fname, &newstime) < 0? 0: newstime.st_mtime;
375 for (i=0; i<n_count && n_list[i].n_time > cutoff; i++) {
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DDecisionHistory.java584 int cutoff = mon.getSampleCount() - DECISION_LIFETIME;
585 if (cutoff > 0) {
591 if (sc < cutoff) {
/illumos-gate/usr/src/cmd/th_tools/
H A Dth_define.c886 int i, j, k, lb, ub, mina, maxa, cutoff[2], mean; local
1002 cutoff[0] = (mean - mina) / DISTRIB_CUTOFF + mina;
1005 if (items[ub].repcount > cutoff[0])
1014 cutoff[1] = maxa - (maxa - mean) / DISTRIB_CUTOFF;
1016 if (items[lb].repcount < cutoff[1])
1026 acnt, mina, maxa, mean, cutoff[0], cutoff[1], lb, ub);
/illumos-gate/usr/src/uts/common/io/audio/drv/audiosolo/
H A Daudiosolo.c722 int cutoff; local
724 cutoff = (spd * 9 * 82) / 20;
725 return (256 - (7160000 / cutoff));
801 /* filter cutoff */
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dconf.c4083 register unsigned long cutoff; local
4109 ** Compute the cutoff value between legal numbers and illegal
4117 ** cutoff will be set to 214748364 and cutlim to either
4125 cutoff = neg ? -(unsigned long) LONG_MIN : LONG_MAX;
4126 cutlim = cutoff % (unsigned long) base;
4127 cutoff /= (unsigned long) base;
4137 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)

Completed in 65 milliseconds