Home | History | Annotate | Download | only in gnulib-lib

Lines Matching defs:INT

48 # define INT LONG int
50 # define INT unsigned LONG int
115 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;
234 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
241 INT
243 int base, int group LOCALE_PARAM_PROTO)
245 int negative;
246 register unsigned LONG int cutoff;
247 register unsigned int cutlim;
248 register unsigned LONG int i;
252 int overflow;
338 && (!ISALPHA (c) || (int) (TOUPPER (c) - L_('A') + 10) >= base))
349 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
350 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base;
364 if ((int) c >= base)
371 i *= (unsigned LONG int) base;
387 `unsigned LONG int', but outside the range of `LONG int'. */
390 ? -((unsigned LONG int) (STRTOL_LONG_MIN + 1)) + 1
391 : (unsigned LONG int) STRTOL_LONG_MAX))
430 INT
435 int base LOCALE_PARAM_PROTO)