Searched refs:cutlim (Results 1 – 7 of 7) sorted by relevance
/external/openssh/openbsd-compat/ |
D | strtoll.c | 55 int neg, any, cutlim; in strtoll() local 102 cutlim = cutoff % base; in strtoll() 105 if (cutlim > 0) { in strtoll() 106 cutlim -= base; in strtoll() 109 cutlim = -cutlim; in strtoll() 123 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll() 133 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
|
D | strtoull.c | 55 int neg, any, cutlim; in strtoull() local 82 cutlim = ULLONG_MAX % (unsigned long long)base; in strtoull() 94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
|
D | strtoul.c | 53 int neg, any, cutlim; in strtoul() local 80 cutlim = ULONG_MAX % (unsigned long)base; in strtoul() 92 if (acc > cutoff || acc == cutoff && c > cutlim) { in strtoul()
|
/external/arm-trusted-firmware/lib/libc/ |
D | strtoul.c | 54 int neg, any, cutlim; in strtoul() local 85 cutlim = ULONG_MAX % base; in strtoul() 97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
|
D | strtoull.c | 54 int neg, any, cutlim; in strtoull() local 85 cutlim = ULLONG_MAX % base; in strtoull() 97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
|
D | strtoll.c | 54 int neg, any, cutlim; in strtoll() local 106 cutlim = cutoff % base; in strtoll() 119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
|
D | strtol.c | 54 int neg, any, cutlim; in strtol() local 105 cutlim = cutoff % base; in strtol() 118 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
|