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

/barrelfish-master/lib/libc/iconv/
H A D_strtol.h52 int any, cutlim, i, neg; local
102 * cutoff will be set to 214748364 and cutlim to either
111 cutlim = (int)(cutoff % base);
114 if (cutlim > 0) {
115 cutlim -= base;
118 cutlim = -cutlim;
132 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
147 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
H A D_strtoul.h51 int any, cutlim, i, neg; local
93 cutlim = (int)(__UINT_MAX % (__UINT)base);
105 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
H A Dcitrus_prop.c83 int ch, cutlim, n; \
88 cutlim = _max_ % base; \
94 if (acc > cutoff || (acc == cutoff && n > cutlim)) \
/barrelfish-master/lib/libc/locale/
H A Dwcstol.c56 int neg, any, cutlim; local
88 cutlim = cutoff % base;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoll.c62 int neg, any, cutlim; local
94 cutlim = cutoff % base;
112 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoul.c56 int neg, any, cutlim; local
87 cutlim = ULONG_MAX % base;
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoull.c62 int neg, any, cutlim; local
93 cutlim = ULLONG_MAX % base;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoumax.c62 int neg, any, cutlim; local
93 cutlim = UINTMAX_MAX % base;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dwcstoimax.c62 int neg, any, cutlim; local
94 cutlim = cutoff % base;
112 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/barrelfish-master/lib/libc/stdlib/
H A Dstrtoimax.c61 int neg, any, cutlim; local
105 * is 10, cutoff will be set to 922337203685477580 and cutlim to
116 cutlim = cutoff % base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtol.c62 int neg, any, cutlim; local
106 * cutoff will be set to 214748364 and cutlim to either
116 cutlim = cutoff % base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoll.c61 int neg, any, cutlim; local
105 * is 10, cutoff will be set to 922337203685477580 and cutlim to
116 cutlim = cutoff % base;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c60 int neg, any, cutlim; local
94 cutlim = ULONG_MAX % base;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoull.c61 int neg, any, cutlim; local
95 cutlim = ULLONG_MAX % base;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoumax.c61 int neg, any, cutlim; local
95 cutlim = UINTMAX_MAX % base;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))

Completed in 30 milliseconds