Home | History | Annotate | Download | only in stdio

Lines Matching refs:CONST

186 #ifndef CONST
188 #define CONST /* blank */
190 #define CONST const
411 extern "C" double strtod(const char *s00, char **se);
425 CONST unsigned char hexdig[256] = {
445 gethex(CONST char **, CONST FPI *, Long *, Bigint **, int, locale_t);
468 static const Bigint bigint_invalid_value;
766 (s, nd0, nd, y9) CONST char *s; int nd0, nd; ULong y9;
768 (CONST char *s, int nd0, int nd, ULong y9)
1012 static const int p05[3] = { 5, 25, 125 };
1548 static CONST double
1559 static CONST double bigtens[] = { 1e16, 1e32, 1e64, 1e128, 1e256 };
1560 static CONST double tinytens[] = { 1e-16, 1e-32, 1e-64, 1e-128, 1e-256 };
1564 static CONST double bigtens[] = { 1e16, 1e32, 1e64 };
1565 static CONST double tinytens[] = { 1e-16, 1e-32, 1e-64 };
1568 static CONST double bigtens[] = { 1e16, 1e32 };
1569 static CONST double tinytens[] = { 1e-16, 1e-32 };
1577 (s00, se) CONST char *s00; char **se;
1579 (CONST char *s00, char **se)
1584 CONST char *s, *s0, *s1;
1593 CONST char decimal_point = '.';
1596 CONST char decimal_point = localeconv()->decimal_point[0];
1598 CONST char decimal_point = '.';
1659 static CONST FPI fpi = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI };
3100 __hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign,
3103 static const int sigfigs = (DBL_MANT_DIG + 3) / 4;
3202 gethex( CONST char **sp, CONST FPI *fpi, Long *exp, Bigint **bp, int sign, locale_t loc)
3205 CONST unsigned char *decpt, *s0, *s, *s1;
3214 const unsigned char *decimalpoint = (unsigned char*)localeconv_l(loc)->decimal_point;
3216 const unsigned char *decimalpoint;
3236 s0 = *(CONST unsigned char **)sp + 2;
3374 int dplen = strlen((const char *)decimalpoint);