Home
last modified time | relevance | path

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

12

/freebsd-10-stable/contrib/sendmail/libsm/
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-10-stable/crypto/openssh/openbsd-compat/
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()
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()
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()
/freebsd-10-stable/lib/libc/iconv/
D_strtol.h52 int any, cutlim, i, neg; in _FUNCNAME() local
111 cutlim = (int)(cutoff % base); in _FUNCNAME()
114 if (cutlim > 0) { in _FUNCNAME()
115 cutlim -= base; in _FUNCNAME()
118 cutlim = -cutlim; in _FUNCNAME()
132 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
147 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
D_strtoul.h51 int any, cutlim, i, neg; in _FUNCNAME() local
93 cutlim = (int)(__UINT_MAX % (__UINT)base); in _FUNCNAME()
105 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
/freebsd-10-stable/sys/libkern/
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))
Dstrtouq.c54 int neg, any, cutlim; in strtouq() local
80 cutlim = (u_quad_t)UQUAD_MAX % qbase; in strtouq()
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtouq()
Dstrtol.c59 int neg = 0, any, cutlim; local
101 cutlim = cutoff % (unsigned long)base;
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
Dstrtoq.c54 int neg, any, cutlim; in strtoq() local
102 cutlim = cutoff % qbase; in strtoq()
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoq()
/freebsd-10-stable/contrib/binutils/libiberty/
Dstrtoul.c67 register int neg = 0, any, cutlim; in strtoul() local
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
Dstrtol.c94 register int neg = 0, any, cutlim; in strtol() local
136 cutlim = cutoff % (unsigned long)base; in strtol()
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
/freebsd-10-stable/contrib/ntp/lib/isc/
Dstrtoul.c79 int neg = 0, any, cutlim; in isc_strtoul() local
101 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in isc_strtoul()
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in isc_strtoul()
/freebsd-10-stable/contrib/gcclibs/libiberty/
Dstrtoul.c67 register int neg = 0, any, cutlim; in strtoul() local
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
Dstrtol.c94 register int neg = 0, any, cutlim; in strtol() local
136 cutlim = cutoff % (unsigned long)base; in strtol()
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
/freebsd-10-stable/lib/libstand/
Dstrtol.c56 int neg = 0, any, cutlim; local
103 cutlim = cutoff % (unsigned long)base;
116 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
Dstrtoul.c57 int neg, any, cutlim; in strtoul() local
90 cutlim = ULONG_MAX % base; in strtoul()
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
/freebsd-10-stable/lib/libc/stdlib/
Dstrtoumax.c61 int neg, any, cutlim; in strtoumax_l() local
95 cutlim = UINTMAX_MAX % base; in strtoumax_l()
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoumax_l()
Dstrtoul.c60 int neg, any, cutlim; in strtoul_l() local
94 cutlim = ULONG_MAX % base; in strtoul_l()
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul_l()
Dstrtoull.c61 int neg, any, cutlim; in strtoull_l() local
95 cutlim = ULLONG_MAX % base; in strtoull_l()
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull_l()
Dstrtoll.c61 int neg, any, cutlim; in strtoll_l() local
116 cutlim = cutoff % base; in strtoll_l()
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll_l()
Dstrtoimax.c61 int neg, any, cutlim; in strtoimax_l() local
116 cutlim = cutoff % base; in strtoimax_l()
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoimax_l()
Dstrtol.c62 int neg, any, cutlim; in strtol_l() local
116 cutlim = cutoff % base; in strtol_l()
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol_l()
/freebsd-10-stable/lib/libc/locale/
Dwcstoul.c56 int neg, any, cutlim; in wcstoul_l() local
87 cutlim = ULONG_MAX % base; in wcstoul_l()
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoul_l()
Dwcstol.c56 int neg, any, cutlim; in wcstol_l() local
88 cutlim = cutoff % base; in wcstol_l()
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstol_l()

12