Searched refs:cutlim (Results 1 - 8 of 8) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/locale/
H A D_wcstol.h55 int neg, any, cutlim; local
93 cutlim = (int)(cutoff % base);
96 if (cutlim > 0) {
97 cutlim -= base;
100 cutlim = -cutlim;
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
H A D_wcstoul.h54 int neg, any, cutlim; local
91 cutlim = (int)(MAX_VALUE % (uint_type)base);
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dstrtoimax.c48 int neg, any, cutlim; local
85 * is 10, cutoff will be set to 922337203685477580 and cutlim to
95 cutlim = cutoff % base;
98 if (cutlim > 0) {
99 cutlim -= base;
102 cutlim = -cutlim;
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
126 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtol.c49 int neg, any, cutlim; local
97 * cutoff will be set to 214748364 and cutlim to either
106 cutlim = cutoff % base;
109 if (cutlim > 0) {
110 cutlim -= base;
113 cutlim = -cutlim;
127 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
137 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoll.c50 int neg, any, cutlim; local
87 * is 10, cutoff will be set to 922337203685477580 and cutlim to
97 cutlim = cutoff % base;
100 if (cutlim > 0) {
101 cutlim -= base;
104 cutlim = -cutlim;
118 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoul.c48 int neg, any, cutlim; local
75 cutlim = ULONG_MAX % (unsigned long)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoull.c50 int neg, any, cutlim; local
77 cutlim = ULLONG_MAX % (unsigned long long)base;
89 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoumax.c48 int neg, any, cutlim; local
75 cutlim = UINTMAX_MAX % (uintmax_t)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {

Completed in 18 milliseconds