Lines Matching defs:INT
35 extern int errno;
63 # define INT LONG int
65 # define INT unsigned LONG int
130 operating on `long long int's. */
155 # define LONG_LONG_MAX TYPE_MAXIMUM (long long int)
158 # define LONG_LONG_MIN TYPE_MINIMUM (long long int)
163 static const unsigned long long int maxquad = ULONG_LONG_MAX;
174 # define LONG_MAX ((long int) (ULONG_MAX >> 1))
252 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
259 INT
263 int base;
264 int group;
267 int negative;
268 register unsigned LONG int cutoff;
269 register unsigned int cutlim;
270 register unsigned LONG int i;
274 int overflow;
360 && (!ISALPHA (c) || (int) (TOUPPER (c) - L_('A') + 10) >= base))
371 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
372 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base;
386 if ((int) c >= base)
393 i *= (unsigned LONG int) base;
409 `unsigned LONG int', but outside the range of `LONG int'. */
412 ? -((unsigned LONG int) (STRTOL_LONG_MIN + 1)) + 1
413 : (unsigned LONG int) STRTOL_LONG_MAX))
460 INT strtol PARAMS ((const STRING_TYPE *nptr, STRING_TYPE **endptr, int base));
464 INT
471 int base;