HomeSort by relevance Sort by last modified time
    Searched refs:cutlim (Results 1 - 7 of 7) sorted by null

  /bionic/libc/stdlib/
strtoimax.c 48 int neg, any, cutlim; local
85 * is 10, cutoff will be set to 922337203685477580 and cutlim to
99 cutlim = INTMAX_MIN % x; \
102 cutlim = INTMAX_MAX % x; \
110 cutlim = (int)(INTMAX_MIN % 4);
113 cutlim = (int)(INTMAX_MAX % 4);
123 cutlim = cutoff % base;
129 if (cutlim > 0) {
130 cutlim -= base;
133 cutlim = -cutlim
    [all...]
strtol.c 49 int neg, any, cutlim; local
86 * cutoff will be set to 214748364 and cutlim to either
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)) {
strtoumax.c 48 int neg, any, cutlim; local
77 cutlim = UINTMAX_MAX % x; \
86 cutlim = UINTMAX_MAX % base;
100 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoul.c 48 int neg, any, cutlim; local
75 cutlim = ULONG_MAX % (unsigned long)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
  /external/openssh/openbsd-compat/
strtoll.c 55 int neg, any, cutlim; local
92 * is 10, cutoff will be set to 922337203685477580 and cutlim to
102 cutlim = cutoff % base;
105 if (cutlim > 0) {
106 cutlim -= base;
109 cutlim = -cutlim;
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoul.c 53 int neg, any, cutlim; local
80 cutlim = ULONG_MAX % (unsigned long)base;
92 if (acc > cutoff || acc == cutoff && c > cutlim) {
  /external/bison/lib/
strtol.c 243 register unsigned int cutlim; local
346 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base;
363 if (i > cutoff || (i == cutoff && c > cutlim))

Completed in 1500 milliseconds