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

12

/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dstrtoll.c53 long long acc, cutoff; local
84 * Compute the cutoff value between legal numbers and illegal
92 * is 10, cutoff will be set to 922337203685477580 and cutlim to
101 cutoff = neg ? LLONG_MIN : LLONG_MAX;
102 cutlim = cutoff % base;
103 cutoff /= base;
107 cutoff += 1;
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
133 if (acc > cutoff || (ac
[all...]
H A Dstrtoul.c51 unsigned long acc, cutoff; local
79 cutoff = ULONG_MAX / (unsigned long)base;
92 if (acc > cutoff || acc == cutoff && c > cutlim) {
H A Dstrtoull.c53 unsigned long long acc, cutoff; local
81 cutoff = ULLONG_MAX / (unsigned long long)base;
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
/freebsd-10.0-release/lib/libc/iconv/
H A D_strtol.h50 __INT acc, cutoff; local
94 * Compute the cutoff value between legal numbers and illegal
102 * cutoff will be set to 214748364 and cutlim to either
110 cutoff = (neg ? __INT_MIN : __INT_MAX);
111 cutlim = (int)(cutoff % base);
112 cutoff /= base;
116 cutoff += 1;
132 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
147 if (acc > cutoff || (ac
[all...]
H A D_strtoul.h49 __UINT acc, cutoff; local
92 cutoff = __UINT_MAX / (__UINT)base;
105 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dstrtol.c93 register unsigned long cutoff; local
119 * Compute the cutoff value between legal numbers and illegal
127 * cutoff will be set to 214748364 and cutlim to either
135 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
136 cutlim = cutoff % (unsigned long)base;
137 cutoff /= (unsigned long)base;
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c66 register unsigned long cutoff; local
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dstrtol.c93 register unsigned long cutoff; local
119 * Compute the cutoff value between legal numbers and illegal
127 * cutoff will be set to 214748364 and cutlim to either
135 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
136 cutlim = cutoff % (unsigned long)base;
137 cutoff /= (unsigned long)base;
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c66 register unsigned long cutoff; local
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/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))
/freebsd-10.0-release/sys/libkern/
H A Dstrtol.c58 unsigned long cutoff; local
84 * Compute the cutoff value between legal numbers and illegal
92 * cutoff will be set to 214748364 and cutlim to either
100 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
101 cutlim = cutoff % (unsigned long)base;
102 cutoff /= (unsigned long)base;
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoq.c53 u_quad_t qbase, cutoff; local
83 * Compute the cutoff value between legal numbers and illegal
91 * is 10, cutoff will be set to 922337203685477580 and cutlim to
101 cutoff = neg ? (u_quad_t)-(QUAD_MIN + QUAD_MAX) + QUAD_MAX : QUAD_MAX;
102 cutlim = cutoff % qbase;
103 cutoff /= qbase;
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c58 unsigned long cutoff; local
80 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
93 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtouq.c53 u_quad_t qbase, cutoff; local
79 cutoff = (u_quad_t)UQUAD_MAX / qbase;
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Dstrto.c51 register LONGLONG_T acc, cutoff; local
88 ** Compute the cutoff value between legal numbers and illegal
96 ** is 10, cutoff will be set to 922337203685477580 and cutlim to
106 cutoff = neg ? LLONG_MIN : LLONG_MAX;
107 cutlim = cutoff % base;
108 cutoff /= base;
114 cutoff += 1;
132 if (acc < cutoff || (acc == cutoff && c > cutlim))
147 if (acc > cutoff || (ac
191 register ULONGLONG_T acc, cutoff; local
[all...]
/freebsd-10.0-release/lib/libc/locale/
H A Dwcstol.c55 unsigned long cutoff; local
86 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
88 cutlim = cutoff % base;
89 cutoff /= base;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoll.c61 unsigned long long cutoff; local
92 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
94 cutlim = cutoff % base;
95 cutoff /= base;
112 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoimax.c61 uintmax_t cutoff; local
92 cutoff = neg ? (uintmax_t)-(INTMAX_MIN + INTMAX_MAX) + INTMAX_MAX
94 cutlim = cutoff % base;
95 cutoff /= base;
112 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoul.c55 unsigned long cutoff; local
86 cutoff = ULONG_MAX / base;
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoull.c61 unsigned long long cutoff; local
92 cutoff = ULLONG_MAX / base;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/lib/libc/stdlib/
H A Dstrtoimax.c60 uintmax_t cutoff; local
97 * Compute the cutoff value between legal numbers and illegal
105 * is 10, cutoff will be set to 922337203685477580 and cutlim to
114 cutoff = neg ? (uintmax_t)-(INTMAX_MIN + INTMAX_MAX) + INTMAX_MAX
116 cutlim = cutoff % base;
117 cutoff /= base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtol.c61 unsigned long cutoff; local
98 * Compute the cutoff value between legal numbers and illegal
106 * cutoff will be set to 214748364 and cutlim to either
114 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
116 cutlim = cutoff % base;
117 cutoff /= base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoll.c60 unsigned long long cutoff; local
97 * Compute the cutoff value between legal numbers and illegal
105 * is 10, cutoff will be set to 922337203685477580 and cutlim to
114 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
116 cutlim = cutoff % base;
117 cutoff /= base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/contrib/ntp/libparse/
H A Dclk_rawdcf.c348 unsigned int i, lowmax, highmax, cutoff, span; local
365 cutoff = 0;
384 cutoff += i;
398 cutoff /= lowmax;
402 cutoff = 4; /* doesn't really matter - it'll fail anyway, but gives error output */
405 parseprintf(DD_RAWDCF,("parse: cvt_rawdcf: average bit count: %d\n", cutoff));
411 for (i = 0; i <= cutoff; i++)
431 cutoff = 0;
436 cutoff +=histbuf[i];
441 if (cutoff)
[all...]

Completed in 228 milliseconds

12