Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dstrtoimax.c45 intmax_t acc, cutoff; in strtoimax() local
104 cutoff = neg ? INTMAX_MIN : INTMAX_MAX; in strtoimax()
105 cutlim = cutoff % base; in strtoimax()
106 cutoff /= base; in strtoimax()
110 cutoff += 1; in strtoimax()
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()
Dstrtol.c46 long acc, cutoff; in strtol() local
104 cutoff = neg ? LONG_MIN : LONG_MAX; in strtol()
105 cutlim = cutoff % base; in strtol()
106 cutoff /= base; in strtol()
110 cutoff += 1; in strtol()
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
Dstrtoll.c48 long long acc, cutoff; in strtoll() local
107 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
108 cutlim = cutoff % base; in strtoll()
109 cutoff /= base; in strtoll()
113 cutoff += 1; in strtoll()
129 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
139 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
Dstrtoull.c48 unsigned long long acc, cutoff; in strtoull() local
83 cutoff = ULLONG_MAX / (unsigned long long)base; in strtoull()
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
Dstrtoul.c46 unsigned long acc, cutoff; in strtoul() local
81 cutoff = ULONG_MAX / (unsigned long)base; in strtoul()
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()
Dstrtoumax.c45 uintmax_t acc, cutoff; in strtoumax() local
80 cutoff = UINTMAX_MAX / (uintmax_t)base; in strtoumax()
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoumax()
/bionic/libc/upstream-openbsd/lib/libc/locale/
D_wcstol.h52 int_type acc, cutoff; in FUNCNAME() local
92 cutoff = neg ? MIN_VALUE : MAX_VALUE; in FUNCNAME()
93 cutlim = (int)(cutoff % base); in FUNCNAME()
94 cutoff /= base; in FUNCNAME()
98 cutoff += 1; in FUNCNAME()
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()
D_wcstoul.h51 uint_type acc, cutoff; in FUNCNAME() local
90 cutoff = MAX_VALUE / (uint_type)base; in FUNCNAME()
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()
/bionic/libc/kernel/uapi/sound/
Dsfnt_info.h86 unsigned char cutoff; member