Searched refs:cutlim (Results 1 – 8 of 8) sorted by relevance
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
D | strtoll.c | 50 int neg, any, cutlim; in strtoll() local 108 cutlim = cutoff % base; in strtoll() 111 if (cutlim > 0) { in strtoll() 112 cutlim -= base; in strtoll() 115 cutlim = -cutlim; in strtoll() 129 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll() 139 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
|
D | strtol.c | 48 int neg, any, cutlim; in strtol() local 105 cutlim = cutoff % base; in strtol() 108 if (cutlim > 0) { in strtol() 109 cutlim -= base; in strtol() 112 cutlim = -cutlim; in strtol() 126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol() 136 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
|
D | strtoimax.c | 47 int neg, any, cutlim; in strtoimax() local 105 cutlim = cutoff % base; in strtoimax() 108 if (cutlim > 0) { in strtoimax() 109 cutlim -= base; in strtoimax() 112 cutlim = -cutlim; in strtoimax() 126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoimax() 136 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()
|
D | strtoull.c | 50 int neg, any, cutlim; in strtoull() local 84 cutlim = ULLONG_MAX % (unsigned long long)base; in strtoull() 96 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
|
D | strtoul.c | 48 int neg, any, cutlim; in strtoul() local 82 cutlim = ULONG_MAX % (unsigned long)base; in strtoul() 94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()
|
D | strtoumax.c | 47 int neg, any, cutlim; in strtoumax() local 81 cutlim = UINTMAX_MAX % (uintmax_t)base; in strtoumax() 93 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoumax()
|
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
D | _wcstol.h | 55 int neg, any, cutlim; in FUNCNAME() local 93 cutlim = (int)(cutoff % base); in FUNCNAME() 96 if (cutlim > 0) { in FUNCNAME() 97 cutlim -= base; in FUNCNAME() 100 cutlim = -cutlim; in FUNCNAME() 111 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME() 121 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()
|
D | _wcstoul.h | 54 int neg, any, cutlim; in FUNCNAME() local 91 cutlim = (int)(MAX_VALUE % (uint_type)base); in FUNCNAME() 100 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()
|