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

12

/freebsd-9.3-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-9.3-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-9.3-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-9.3-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-9.3-release/contrib/nvi/clib/
H A Dstrtol.c64 register unsigned long cutoff; local
90 * Compute the cutoff value between legal numbers and illegal
98 * cutoff will be set to 214748364 and cutlim to either
106 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
107 cutlim = cutoff % (unsigned long)base;
108 cutoff /= (unsigned long)base;
118 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
H A Dstrtoul.c64 register unsigned long cutoff; local
86 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
97 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
/freebsd-9.3-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))
/freebsd-9.3-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-9.3-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-9.3-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))
/freebsd-9.3-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-9.3-release/contrib/bind9/lib/isc/
H A Dstrtoul.c74 unsigned long cutoff; local
96 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dstrtoul.c80 unsigned long cutoff; local
102 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dstrtoul.c78 unsigned long cutoff; local
100 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))

Completed in 125 milliseconds

12