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.c46 intmax_t acc, cutoff; local
77 * Compute the cutoff value between legal numbers and illegal
85 * is 10, cutoff will be set to 922337203685477580 and cutlim to
94 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
95 cutlim = cutoff % base;
96 cutoff /= base;
100 cutoff += 1;
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
126 if (acc > cutoff || (ac
[all...]
H A Dstrtol.c47 long acc, cutoff; local
89 * Compute the cutoff value between legal numbers and illegal
97 * cutoff will be set to 214748364 and cutlim to either
105 cutoff = neg ? LONG_MIN : LONG_MAX;
106 cutlim = cutoff % base;
107 cutoff /= base;
111 cutoff += 1;
127 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
137 if (acc > cutoff || (ac
[all...]
H A Dstrtoll.c48 long long acc, cutoff; local
79 * Compute the cutoff value between legal numbers and illegal
87 * is 10, cutoff will be set to 922337203685477580 and cutlim to
96 cutoff = neg ? LLONG_MIN : LLONG_MAX;
97 cutlim = cutoff % base;
98 cutoff /= base;
102 cutoff += 1;
118 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 if (acc > cutoff || (ac
[all...]
H A Dstrtoul.c46 unsigned long acc, cutoff; local
74 cutoff = ULONG_MAX / (unsigned long)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoull.c48 unsigned long long acc, cutoff; local
76 cutoff = ULLONG_MAX / (unsigned long long)base;
89 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoumax.c46 uintmax_t acc, cutoff; local
74 cutoff = UINTMAX_MAX / (uintmax_t)base;
87 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 625 milliseconds