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

/bionic/libc/upstream-openbsd/lib/libc/locale/
H A D_wcstol.h52 int_type acc, cutoff; local
92 cutoff = neg ? MIN_VALUE : MAX_VALUE;
93 cutlim = (int)(cutoff % base);
94 cutoff /= base;
98 cutoff += 1;
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
H A D_wcstoul.h51 uint_type acc, cutoff; local
90 cutoff = MAX_VALUE / (uint_type)base;
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dstrtoimax.c45 intmax_t acc, cutoff; local
87 * Compute the cutoff value between legal numbers and illegal
95 * is 10, cutoff will be set to 922337203685477580 and cutlim to
104 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
105 cutlim = cutoff % base;
106 cutoff /= base;
110 cutoff += 1;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (ac
[all...]
H A Dstrtol.c46 long acc, cutoff; local
88 * Compute the cutoff value between legal numbers and illegal
96 * cutoff will be set to 214748364 and cutlim to either
104 cutoff = neg ? LONG_MIN : LONG_MAX;
105 cutlim = cutoff % base;
106 cutoff /= base;
110 cutoff += 1;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (ac
[all...]
H A Dstrtoll.c48 long long acc, cutoff; local
90 * Compute the cutoff value between legal numbers and illegal
98 * is 10, cutoff will be set to 922337203685477580 and cutlim to
107 cutoff = neg ? LLONG_MIN : LLONG_MAX;
108 cutlim = cutoff % base;
109 cutoff /= base;
113 cutoff += 1;
129 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
139 if (acc > cutoff || (ac
[all...]
H A Dstrtoul.c46 unsigned long acc, cutoff; local
81 cutoff = ULONG_MAX / (unsigned long)base;
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoull.c48 unsigned long long acc, cutoff; local
83 cutoff = ULLONG_MAX / (unsigned long long)base;
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoumax.c45 uintmax_t acc, cutoff; local
80 cutoff = UINTMAX_MAX / (uintmax_t)base;
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
/bionic/libc/kernel/uapi/sound/
H A Dsfnt_info.h86 unsigned char cutoff; member in struct:soundfont_voice_parm

Completed in 2756 milliseconds