Home
last modified time | relevance | path

Searched refs:cutlim (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/sendmail/libsm/
H A Dstrto.c53 register int any, cutlim; variable
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
223 cutlim = ULLONG_MAX % (ULONGLONG_T)base;
236 if (acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd/crypto/openssh/openbsd-compat/
H A Dstrtoll.c55 int neg, any, cutlim; in strtoll() local
102 cutlim = cutoff % base; in strtoll()
105 if (cutlim > 0) { in strtoll()
106 cutlim -= base; in strtoll()
109 cutlim = -cutlim; in strtoll()
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
H A Dstrtoul.c53 int neg, any, cutlim; in strtoul() local
80 cutlim = ULONG_MAX % (unsigned long)base; in strtoul()
92 if (acc > cutoff || acc == cutoff && c > cutlim) { in strtoul()
H A Dstrtoull.c55 int neg, any, cutlim; in strtoull() local
82 cutlim = ULLONG_MAX % (unsigned long long)base; in strtoull()
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
/freebsd/lib/libc/iconv/
H A D_strtol.h53 int any, cutlim, i, neg; in _FUNCNAME() local
122 cutlim = (int)(cutoff % base); in _FUNCNAME()
125 if (cutlim > 0) { in _FUNCNAME()
126 cutlim -= base; in _FUNCNAME()
129 cutlim = -cutlim; in _FUNCNAME()
143 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
158 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
H A D_strtoul.h52 int any, cutlim, i, neg; in _FUNCNAME() local
104 cutlim = (int)(__UINT_MAX % (__UINT)base); in _FUNCNAME()
116 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
H A Dcitrus_prop.c83 int ch, cutlim, n; \
88 cutlim = _max_ % base; \
94 if (acc > cutoff || (acc == cutoff && n > cutlim)) \
/freebsd/contrib/bmake/
H A D_strtol.h61 int i, neg, any, cutlim; in _FUNCNAME() local
140 cutlim = (int)(cutoff % base); in _FUNCNAME()
143 if (cutlim > 0) { in _FUNCNAME()
144 cutlim -= base; in _FUNCNAME()
147 cutlim = -cutlim; in _FUNCNAME()
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
/freebsd/sys/libkern/
H A Dstrtoul.c53 int neg = 0, any, cutlim; in strtoul() local
75 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul()
87 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
H A Dstrtouq.c53 int neg, any, cutlim; in strtouq() local
79 cutlim = (u_quad_t)UQUAD_MAX % qbase; in strtouq()
91 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtouq()
H A Dstrtol.c53 int neg = 0, any, cutlim; in strtol() local
95 cutlim = cutoff % (unsigned long)base; in strtol()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
H A Dstrtoq.c53 int neg, any, cutlim; in strtoq() local
101 cutlim = cutoff % qbase; in strtoq()
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoq()
/freebsd/lib/libc/stdlib/
H A Dstrtol.c57 int neg, any, cutlim; in strtol_l() local
118 cutlim = cutoff % base; in strtol_l()
131 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol_l()
H A Dstrtoll.c57 int neg, any, cutlim; in strtoll_l() local
120 cutlim = cutoff % base; in strtoll_l()
133 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll_l()
H A Dstrtoul.c56 int neg, any, cutlim; in strtoul_l() local
97 cutlim = ULONG_MAX % base; in strtoul_l()
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul_l()
H A Dstrtoull.c57 int neg, any, cutlim; in strtoull_l() local
98 cutlim = ULLONG_MAX % base; in strtoull_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull_l()
H A Dstrtoumax.c57 int neg, any, cutlim; in strtoumax_l() local
98 cutlim = UINTMAX_MAX % base; in strtoumax_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoumax_l()
H A Dstrtoimax.c57 int neg, any, cutlim; in strtoimax_l() local
119 cutlim = cutoff % base; in strtoimax_l()
132 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoimax_l()
/freebsd/lib/libc/locale/
H A Dwcstol.c55 int neg, any, cutlim; in wcstol_l() local
97 cutlim = cutoff % base; in wcstol_l()
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstol_l()
H A Dwcstoul.c55 int neg, any, cutlim; in wcstoul_l() local
96 cutlim = ULONG_MAX % base; in wcstoul_l()
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoul_l()
H A Dwcstoimax.c55 int neg, any, cutlim; in wcstoimax_l() local
97 cutlim = cutoff % base; in wcstoimax_l()
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoimax_l()
H A Dwcstoll.c55 int neg, any, cutlim; in wcstoll_l() local
97 cutlim = cutoff % base; in wcstoll_l()
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoll_l()
H A Dwcstoull.c55 int neg, any, cutlim; in wcstoull_l() local
96 cutlim = ULLONG_MAX % base; in wcstoull_l()
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoull_l()
H A Dwcstoumax.c55 int neg, any, cutlim; in wcstoumax_l() local
96 cutlim = UINTMAX_MAX % base; in wcstoumax_l()
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoumax_l()
/freebsd/sys/net/
H A Dif_clone.c799 int cutlim = INT_MAX % 10; in ifc_name2unit() local
815 (*unit == cutoff && *cp - '0' > cutlim)) in ifc_name2unit()

12