/freebsd/contrib/sendmail/libsm/ |
H A D | strto.c | 53 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 D | strtoll.c | 55 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 D | strtoull.c | 55 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()
|
H A D | strtoul.c | 53 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/lib/libc/iconv/ |
H A D | _strtol.h | 53 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.h | 52 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 D | citrus_prop.c | 83 int ch, cutlim, n; \ 88 cutlim = _max_ % base; \ 94 if (acc > cutoff || (acc == cutoff && n > cutlim)) \
|
/freebsd/contrib/bmake/ |
H A D | _strtol.h | 61 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 D | strtoul.c | 53 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 D | strtol.c | 53 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 D | strtouq.c | 53 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 D | strtoq.c | 53 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 D | strtol.c | 57 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 D | strtoll.c | 57 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 D | strtoul.c | 56 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 D | strtoull.c | 57 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 D | strtoumax.c | 57 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 D | strtoimax.c | 57 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 D | wcstoimax.c | 55 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 D | wcstol.c | 55 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 D | wcstoll.c | 55 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 D | wcstoul.c | 55 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 D | wcstoull.c | 55 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 D | wcstoumax.c | 55 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 D | if_clone.c | 797 int cutlim = INT_MAX % 10; in ifc_name2unit() local 813 (*unit == cutoff && *cp - '0' > cutlim)) in ifc_name2unit()
|