Lines Matching refs:UNSIGNED
45 unsigned integers. */
46 #ifndef UNSIGNED
47 # define UNSIGNED 0
50 # define INT unsigned LONG int
55 # if UNSIGNED
85 # if UNSIGNED
152 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
163 static const unsigned long long int maxquad = ULONG_LONG_MAX;
210 # define UCHAR_TYPE unsigned char
234 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
246 register unsigned LONG int cutoff;
247 register unsigned int cutlim;
248 register unsigned LONG int i;
349 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
350 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base;
371 i *= (unsigned LONG int) base;
385 #if !UNSIGNED
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))
398 #if UNSIGNED