Searched refs:cutlim (Results 1 - 8 of 8) sorted by relevance
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
H A D | _wcstol.h | 55 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.h | 54 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 D | strtoimax.c | 47 int neg, any, cutlim; local 95 * is 10, cutoff will be set to 922337203685477580 and cutlim to 105 cutlim = cutoff % base; 108 if (cutlim > 0) { 109 cutlim -= base; 112 cutlim = -cutlim; 126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { 136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
|
H A D | strtol.c | 48 int neg, any, cutlim; local 96 * cutoff will be set to 214748364 and cutlim to either 105 cutlim = cutoff % base; 108 if (cutlim > 0) { 109 cutlim -= base; 112 cutlim = -cutlim; 126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { 136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
|
H A D | strtoll.c | 50 int neg, any, cutlim; local 98 * is 10, cutoff will be set to 922337203685477580 and cutlim to 108 cutlim = cutoff % base; 111 if (cutlim > 0) { 112 cutlim -= base; 115 cutlim = -cutlim; 129 if (acc < cutoff || (acc == cutoff && c > cutlim)) { 139 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
|
H A D | strtoul.c | 48 int neg, any, cutlim; local 82 cutlim = ULONG_MAX % (unsigned long)base; 94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
|
H A D | strtoull.c | 50 int neg, any, cutlim; local 84 cutlim = ULLONG_MAX % (unsigned long long)base; 96 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
|
H A D | strtoumax.c | 47 int neg, any, cutlim; local 81 cutlim = UINTMAX_MAX % (uintmax_t)base; 93 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
|
Completed in 69 milliseconds