Lines Matching defs:UINTMAX_T
385 #ifdef UINTMAX_T
386 #undef UINTMAX_T
387 #endif /* defined(UINTMAX_T) */
389 #define UINTMAX_T uintmax_t
394 #define UINTMAX_T ULLONG
544 static int convert(UINTMAX_T, char *, size_t, int, int);
545 static UINTMAX_T cast(LDOUBLE);
546 static UINTMAX_T myround(LDOUBLE);
787 value = va_arg(args, UINTMAX_T);
994 UINTMAX_T uvalue;
1096 UINTMAX_T intpart;
1097 UINTMAX_T fracpart;
1098 UINTMAX_T mask;
1184 switch (sizeof(UINTMAX_T)) {
1212 mask = (UINTMAX_T)mypow10(precision);
1435 convert(UINTMAX_T value, char *buf, size_t size, int base, int caps)
1449 static UINTMAX_T
1452 UINTMAX_T result;
1459 * value although converting the latter to UINTMAX_T would overflow.
1464 result = (UINTMAX_T)value;
1473 static UINTMAX_T
1476 UINTMAX_T intpart = cast(value);