Home
last modified time | relevance | path

Searched refs:cutoff (Results 1 – 25 of 47) sorted by relevance

12

/dragonfly/lib/libc/citrus/
H A D_strtol.h50 __INT acc, cutoff; in _FUNCNAME() local
113 cutoff = (neg ? INT_MIN : INT_MAX); in _FUNCNAME()
114 cutlim = (int)(cutoff % base); in _FUNCNAME()
115 cutoff /= base; in _FUNCNAME()
119 cutoff += 1; in _FUNCNAME()
135 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
150 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
H A D_strtoul.h49 __UINT acc, cutoff; in _FUNCNAME() local
95 cutoff = UINT_MAX / (__UINT)base; in _FUNCNAME()
108 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
H A Dcitrus_prop.c82 _type_ acc, cutoff; \
87 cutoff = _max_ / base; \
94 if (acc > cutoff || (acc == cutoff && n > cutlim)) \
/dragonfly/lib/libc/stdlib/
H A D_strtol.h51 __INT acc, cutoff; in _FUNCNAME_L() local
112 cutoff = neg ? __INT_MIN : __INT_MAX; in _FUNCNAME_L()
113 cutlim = (int)(cutoff % base); in _FUNCNAME_L()
114 cutoff /= base; in _FUNCNAME_L()
118 cutoff += 1; in _FUNCNAME_L()
136 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME_L()
146 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME_L()
H A D_strtoul.h51 __UINT acc, cutoff; in _FUNCNAME_L() local
98 cutoff = __UINT_MAX / (__UINT)base; in _FUNCNAME_L()
113 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME_L()
/dragonfly/contrib/bmake/
H A D_strtol.h59 __INT acc, cutoff; in _FUNCNAME() local
139 cutoff = (__INT)(neg ? __INT_MIN : __INT_MAX); in _FUNCNAME()
140 cutlim = (int)(cutoff % base); in _FUNCNAME()
141 cutoff /= base; in _FUNCNAME()
145 cutoff += 1; in _FUNCNAME()
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
/dragonfly/stand/lib/
H A Dstrtol.c47 unsigned long cutoff; in strtol() local
94 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; in strtol()
95 cutlim = cutoff % (unsigned long)base; in strtol()
96 cutoff /= (unsigned long)base; in strtol()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
H A Dstrtoul.c53 unsigned long cutoff; in strtoul() local
86 cutoff = ULONG_MAX / base; in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
/dragonfly/sys/libkern/
H A Dstrtol.c54 unsigned long cutoff; in strtol() local
96 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; in strtol()
97 cutlim = cutoff % (unsigned long)base; in strtol()
98 cutoff /= (unsigned long)base; in strtol()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
H A Dstrtoq.c52 u_quad_t qbase, cutoff; in strtoq() local
100 cutoff = neg ? (u_quad_t)-(QUAD_MIN + QUAD_MAX) + QUAD_MAX : QUAD_MAX; in strtoq()
101 cutlim = cutoff % qbase; in strtoq()
102 cutoff /= qbase; in strtoq()
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoq()
H A Dstrtoul.c54 unsigned long cutoff; in strtoul() local
76 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; in strtoul()
89 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
H A Dstrtouq.c52 u_quad_t qbase, cutoff; in strtouq() local
79 cutoff = (u_quad_t)UQUAD_MAX / qbase; in strtouq()
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtouq()
/dragonfly/lib/libc/locale/
H A Dwcstoll.c56 unsigned long long cutoff; in wcstoll_l() local
90 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX in wcstoll_l()
92 cutlim = cutoff % base; in wcstoll_l()
93 cutoff /= base; in wcstoll_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoll_l()
H A Dwcstol.c55 unsigned long cutoff; in wcstol_l() local
89 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX in wcstol_l()
91 cutlim = cutoff % base; in wcstol_l()
92 cutoff /= base; in wcstol_l()
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstol_l()
H A Dwcstoimax.c56 uintmax_t cutoff; in wcstoimax_l() local
90 cutoff = neg ? (uintmax_t)-(INTMAX_MIN + INTMAX_MAX) + INTMAX_MAX in wcstoimax_l()
92 cutlim = cutoff % base; in wcstoimax_l()
93 cutoff /= base; in wcstoimax_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoimax_l()
H A Dwcstoumax.c56 uintmax_t cutoff; in wcstoumax_l() local
90 cutoff = UINTMAX_MAX / base; in wcstoumax_l()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoumax_l()
H A Dwcstoul.c55 unsigned long cutoff; in wcstoul_l() local
89 cutoff = ULONG_MAX / base; in wcstoul_l()
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoul_l()
H A Dwcstoull.c56 unsigned long long cutoff; in wcstoull_l() local
90 cutoff = ULLONG_MAX / base; in wcstoull_l()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoull_l()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dspellcheck.h122 unsigned int cutoff = MAX (m_goal_len, candidate_len) / 2;
123 if (min_candidate_distance > cutoff)
164 unsigned int cutoff = MAX (m_goal_len, m_best_candidate_len) / 2;
165 if (m_best_distance > cutoff)
/dragonfly/usr.bin/locate/locate/
H A Dfastfind.c135 u_char *cutoff; local
270 cutoff = path;
275 cutoff = path + count;
280 for (s = foundchar; s >= cutoff; s--) {
/dragonfly/sys/net/
H A Dif_clone.c242 int cutoff = INT_MAX / 10; in if_name2unit() local
258 if (*unit > cutoff || in if_name2unit()
259 (*unit == cutoff && *cp - '0' > cutlim)) in if_name2unit()
/dragonfly/usr.sbin/installer/dfuife_curses/
H A Dcurses_widget.c151 unsigned int wx, wy, x, len, i, charpos, cutoff, fchpos; in curses_widget_draw() local
226 cutoff = (w->amount * (w->width - 2)) / 100; in curses_widget_draw()
229 if (x < cutoff) { in curses_widget_draw()
/dragonfly/contrib/gdb-7/bfd/
H A Dbfd.c1261 bfd_vma cutoff; in bfd_scan_vma() local
1296 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base; in bfd_scan_vma()
1313 if (value > cutoff || (value == cutoff && digit > cutlim)) in bfd_scan_vma()
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_ocsp.c252 i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, in i2r_ocsp_acutoff() argument
257 if (!ASN1_GENERALIZEDTIME_print(bp, cutoff)) in i2r_ocsp_acutoff()
/dragonfly/usr.sbin/sa/
H A Dextern.h86 extern u_quad_t cutoff;

12