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

12

/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dstrtoll.c55 int neg, any, cutlim; local
92 * is 10, cutoff will be set to 922337203685477580 and cutlim to
102 cutlim = cutoff % base;
105 if (cutlim > 0) {
106 cutlim -= base;
109 cutlim = -cutlim;
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoul.c53 int neg, any, cutlim; local
80 cutlim = ULONG_MAX % (unsigned long)base;
92 if (acc > cutoff || acc == cutoff && c > cutlim) {
H A Dstrtoull.c55 int neg, any, cutlim; local
82 cutlim = 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.h52 int any, cutlim, i, neg; local
102 * cutoff will be set to 214748364 and cutlim to either
111 cutlim = (int)(cutoff % base);
114 if (cutlim > 0) {
115 cutlim -= base;
118 cutlim = -cutlim;
132 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
147 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
H A D_strtoul.h51 int any, cutlim, i, neg; local
93 cutlim = (int)(__UINT_MAX % (__UINT)base);
105 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Dstrto.c53 register int any, cutlim; local
96 ** is 10, cutoff will be set to 922337203685477580 and cutlim to
107 cutlim = cutoff % base;
111 if (cutlim > 0)
113 cutlim -= base;
116 cutlim = -cutlim;
132 if (acc < cutoff || (acc == cutoff && c > cutlim))
147 if (acc > cutoff || (acc == cutoff && c > cutlim))
194 register int any, cutlim; local
[all...]
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
127 * cutoff will be set to 214748364 and cutlim to either
136 cutlim = cutoff % (unsigned long)base;
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
89 cutlim = (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.c94 register int neg = 0, any, cutlim; local
127 * cutoff will be set to 214748364 and cutlim to either
136 cutlim = cutoff % (unsigned long)base;
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
89 cutlim = (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.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))
H A Dstrtoul.c57 int neg, any, cutlim; local
90 cutlim = ULONG_MAX % base;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/sys/libkern/
H A Dstrtol.c59 int neg = 0, any, cutlim; local
92 * cutoff will be set to 214748364 and cutlim to either
101 cutlim = cutoff % (unsigned long)base;
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoq.c54 int neg, any, cutlim; local
91 * is 10, cutoff will be set to 922337203685477580 and cutlim to
102 cutlim = cutoff % qbase;
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c59 int neg = 0, any, cutlim; local
81 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
93 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtouq.c54 int neg, any, cutlim; local
80 cutlim = (u_quad_t)UQUAD_MAX % qbase;
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/lib/libc/locale/
H A Dwcstol.c56 int neg, any, cutlim; local
88 cutlim = cutoff % base;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoll.c62 int neg, any, cutlim; local
94 cutlim = cutoff % base;
112 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoul.c56 int neg, any, cutlim; local
87 cutlim = ULONG_MAX % base;
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoull.c62 int neg, any, cutlim; local
93 cutlim = ULLONG_MAX % base;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoumax.c62 int neg, any, cutlim; local
93 cutlim = UINTMAX_MAX % base;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/lib/libc/stdlib/
H A Dstrtoimax.c61 int neg, any, cutlim; local
105 * is 10, cutoff will be set to 922337203685477580 and cutlim to
116 cutlim = cutoff % base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtol.c62 int neg, any, cutlim; local
106 * cutoff will be set to 214748364 and cutlim to either
116 cutlim = cutoff % base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoll.c61 int neg, any, cutlim; local
105 * is 10, cutoff will be set to 922337203685477580 and cutlim to
116 cutlim = cutoff % base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c60 int neg, any, cutlim; local
94 cutlim = ULONG_MAX % base;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))

Completed in 321 milliseconds

12