Home | History | Annotate | Download | only in lib

Lines Matching defs:UNSIGNED

50    unsigned integers.  */
51 #ifndef UNSIGNED
52 # define UNSIGNED 0
55 # define INT unsigned LONG int
60 # if UNSIGNED
90 # if UNSIGNED
157 # define ULONG_LONG_MAX TYPE_MAXIMUM (unsigned long long)
168 static const unsigned long long int maxquad = ULONG_LONG_MAX;
220 # define UCHAR_TYPE unsigned char
244 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
256 register unsigned LONG int cutoff;
257 register unsigned int cutlim;
258 register unsigned LONG int i;
359 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
360 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base;
381 i *= (unsigned LONG int) base;
395 #if !UNSIGNED
397 `unsigned LONG int', but outside the range of `LONG int'. */
400 ? -((unsigned LONG int) (STRTOL_LONG_MIN + 1)) + 1
401 : (unsigned LONG int) STRTOL_LONG_MAX))
408 #if UNSIGNED