home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / values.h < prev    next >
C/C++ Source or Header  |  1998-08-19  |  7KB  |  199 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ident    "@(#)sgs-head:i386/head/values.h    1.33.3.7"
  12.  
  13. #ifndef BITSPERBYTE
  14. /* These values work with any binary representation of integers
  15.  * where the high-order bit contains the sign. */
  16.  
  17. /* a number used normally for size of a shift */
  18. #define BITSPERBYTE    8
  19. #define BITS(type)    (BITSPERBYTE * (int)sizeof(type))
  20.  
  21. /* short, regular and long ints with only the high-order bit turned on */
  22. #define HIBITS    ((short)(1 << BITS(short) - 1))
  23.  
  24. #if defined(__STDC__)
  25. #define HIBITI    (1U << BITS(int) - 1)
  26. #define HIBITL    (1UL << BITS(long) - 1)
  27. #else
  28. #define HIBITI    ((unsigned)1 << BITS(int) - 1)
  29. #define HIBITL    (1L << BITS(long) - 1)
  30. #endif /* __STDC */
  31.  
  32. /* largest short, regular and long int */
  33. #define MAXSHORT    ((short)~HIBITS)
  34. #define MAXINT    ((int)(~HIBITI))
  35. #define MAXLONG    ((long)(~HIBITL))
  36.  
  37. /* various values that describe the binary floating-point representation
  38.  * _EXPBASE    - the exponent base
  39.  * DMAXEXP     - the maximum exponent of a double (as returned by frexp())
  40.  * FMAXEXP     - the maximum exponent of a float  (as returned by frexp())
  41.  * DMINEXP     - the minimum exponent of a double (as returned by frexp())
  42.  * FMINEXP     - the minimum exponent of a float  (as returned by frexp())
  43.  * MAXDOUBLE    - the largest double
  44.             ((_EXPBASE ** DMAXEXP) * (1 - (_EXPBASE ** -DSIGNIF)))
  45.  * MAXFLOAT    - the largest float
  46.             ((_EXPBASE ** FMAXEXP) * (1 - (_EXPBASE ** -FSIGNIF)))
  47.  * MAXLONGDOUBLE - the largest long double (i386 ONLY)
  48.  * MINDOUBLE    - the smallest double (_EXPBASE ** (DMINEXP - 1))
  49.  * MINFLOAT    - the smallest float (_EXPBASE ** (FMINEXP - 1))
  50.  * MINLONGDOUBLE - the smallest long double (i386 ONLY)
  51.  * DSIGNIF    - the number of significant bits in a double
  52.  * FSIGNIF    - the number of significant bits in a float
  53.  * LDSIGNIF    - the number of significant bits in a long double (on 
  54.  *            i386 ONLY)
  55.  * DMAXPOWTWO    - the largest power of two exactly representable as a double
  56.  * FMAXPOWTWO    - the largest power of two exactly representable as a float
  57.  * LDMAXPOWTWO    - the largest power of two exactly representable as 
  58.  *            a long double (on i386 ONLY)
  59.  * _IEEE    - 1 if IEEE standard representation is used
  60.  * _DEXPLEN    - the number of bits for the exponent of a double
  61.  * _FEXPLEN    - the number of bits for the exponent of a float
  62.  * _LDEXPLEN    - the number of bits for the exponent of a long double (on
  63.  *            i386 ONLY )
  64.  * _HIDDENBIT    - 1 if high-significance bit of mantissa is implicit
  65.  * LN_MAXDOUBLE    - the natural log of the largest double  -- log(MAXDOUBLE)
  66.  * LN_MINDOUBLE    - the natural log of the smallest double -- log(MINDOUBLE)
  67.  * LN_MAXFLOAT    - the natural log of the largest float  -- log(MAXFLOAT)
  68.  * LN_MINFLOAT    - the natural log of the smallest float -- log(MINFLOAT)
  69.  * LN_MAXLONGDOUBLE - the natural log of the largest long double (i386 ONLY)
  70.  * LN_MINLONGDOUBLE - the natural log of the smallest  long oublee (i386 ONLY)
  71.  */
  72.  
  73. #if defined(__STDC__)
  74.  
  75. #if #machine(M32) || #machine(i386)
  76.  
  77. #define MAXDOUBLE    1.79769313486231570e+308
  78.  
  79. #ifndef MAXFLOAT
  80. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  81. #endif
  82.  
  83. #define MINDOUBLE    4.94065645841246544e-324
  84. #define MINFLOAT    ((float)1.40129846432481707e-45)
  85. #define    _IEEE        1
  86. #define _DEXPLEN    11
  87. #define _HIDDENBIT    1
  88. #define DMINEXP    (-(DMAXEXP + DSIGNIF - _HIDDENBIT - 3))
  89. #define FMINEXP    (-(FMAXEXP + FSIGNIF - _HIDDENBIT - 3))
  90.  
  91. #if #machine(i386)
  92. #define MAXLONGDOUBLE    (+__ldmax)
  93. #define MINLONGDOUBLE    (+__ldmin[1])
  94. #define _LDEXPLEN    15
  95. #define UNUSED_PART    16
  96. #define LDSIGNIF    (BITS(long double)-UNUSED_PART-_LDEXPLEN+_HIDDENBIT-1)
  97. #define LDMINEXP    (-(LDMAXEXP + LDSIGNIF - _HIDDENBIT - 3))
  98.  
  99. extern const long double    __ldmin[], __ldmax;
  100.  
  101. #endif /* #machine(i386) */
  102.  
  103. #endif /* #machine(M32) || #machine(i386) */
  104.  
  105. #else /* !define(__STDC__) */
  106.  
  107. #if M32 || i386
  108. #define MAXDOUBLE    1.79769313486231570e+308
  109.  
  110. #ifndef MAXFLOAT
  111. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  112. #endif
  113.  
  114. #define MINDOUBLE    4.94065645841246544e-324
  115. #define MINFLOAT    ((float)1.40129846432481707e-45)
  116. #define    _IEEE        1
  117. #define _DEXPLEN    11
  118. #define _HIDDENBIT    1
  119. #define DMINEXP    (-(DMAXEXP + DSIGNIF - _HIDDENBIT - 3))
  120. #define FMINEXP    (-(FMAXEXP + FSIGNIF - _HIDDENBIT - 3))
  121. #endif /* M32 || i386 */
  122.  
  123. #if i386
  124. #define _LDEXPLEN    15
  125. #define MAXLONGDOUBLE    (+__ldmax)
  126. #define MINLONGDOUBLE    (+__ldmin[1])
  127. #define UNUSED_PART    16
  128. #define LDSIGNIF    (BITS(long double)-UNUSED_PART-_LDEXPLEN+_HIDDENBIT-1)
  129. #define LDMINEXP    (-(LDMAXEXP + LDSIGNIF - _HIDDENBIT - 3))
  130.  
  131. extern const long double    __ldmin[], __ldmax;
  132.  
  133. #endif /* i386 */
  134.  
  135. #endif    /* __STDC__ */
  136.  
  137. #define _LENBASE    1
  138. #define _EXPBASE    (1 << _LENBASE)
  139. #define _FEXPLEN    8
  140.  
  141. #define DSIGNIF    (BITS(double) - _DEXPLEN + _HIDDENBIT - 1)
  142. #define FSIGNIF    (BITS(float)  - _FEXPLEN + _HIDDENBIT - 1)
  143.  
  144. #if i386
  145. #define UNUSED_PART    16
  146. #define LDSIGNIF    (BITS(long double)-UNUSED_PART-_LDEXPLEN+_HIDDENBIT-1)
  147. #endif /* i386 */
  148.  
  149.  
  150. #define DMAXPOWTWO    ((double)(1L << BITS(long) - 2) * \
  151.                 (1L << DSIGNIF - BITS(long) + 1))
  152. #define FMAXPOWTWO    ((float)(1L << FSIGNIF - 1))
  153. #if i386
  154. #if defined(__STDC__)
  155. #if defined(__cplusplus)
  156. extern "C" long double ldexpl(long double, int);
  157. #else
  158. extern long double ldexpl(long double, int);
  159. #endif /* defined(__cplusplus) */
  160. #else
  161. extern long double ldexpl();
  162. #endif /* defined(__STDC__) */
  163. #define LDMAXPOWTWO    (long double)ldexpl(1.0L, 63)
  164. #define    LDMAXEXP    ((1 << _LDEXPLEN - 1) - 1 + _IEEE )
  165. #define LN_MAXLONGDOUBLE    ((long double)(M_LN2 * LDMAXEXP))
  166. #define LN_MINLONGDOUBLE    ((long double)(M_LN2 * (LDMINEXP - 1)))
  167. #endif /* i386 */
  168.  
  169. #define DMAXEXP    ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  170. #define FMAXEXP    ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  171.  
  172. #define LN_MAXDOUBLE    (M_LN2 * DMAXEXP)
  173. #define LN_MAXFLOAT    (float)(M_LN2 * FMAXEXP)
  174. #define LN_MINDOUBLE    (M_LN2 * (DMINEXP - 1))
  175. #define LN_MINFLOAT    (float)(M_LN2 * (FMINEXP - 1))
  176.  
  177. #define H_PREC    (DSIGNIF % 2 ? (1L << DSIGNIF/2) * M_SQRT2 : 1L << DSIGNIF/2)
  178. #define FH_PREC    (float)(FSIGNIF % 2 ? (1L << FSIGNIF/2) * M_SQRT2 : 1L << FSIGNIF/2)
  179. #define LH_PREC    (LDSIGNIF % 2 ? (1L << LDSIGNIF/2) * M_SQRT2 : 1L << LDSIGNIF/2)
  180. #define X_EPS    (1.0/H_PREC)
  181. #define FX_EPS    (float)((float)1.0/FH_PREC)
  182. #define LX_EPS    (1.0/LH_PREC)
  183. #define X_PLOSS    ((double)(long)(M_PI * H_PREC))
  184. #define FX_PLOSS ((float)(long)(M_PI * FH_PREC))
  185.  
  186. #define LX_PLOSS    ((long double)(long)(M_PI * LH_PREC))
  187.  
  188. #define X_TLOSS    (M_PI * DMAXPOWTWO)
  189. #define FX_TLOSS (float)(M_PI * FMAXPOWTWO)
  190. #define LX_TLOSS    (M_PI * LDMAXPOWTWO)
  191. #define M_LN2    0.69314718055994530942
  192. #define M_PI    3.14159265358979323846
  193. #define M_SQRT2    1.41421356237309504880
  194. #define MAXBEXP    DMAXEXP /* for backward compatibility */
  195. #define MINBEXP    DMINEXP /* for backward compatibility */
  196. #define MAXPOWTWO    DMAXPOWTWO /* for backward compatibility */
  197.  
  198. #endif    /* BITSPERBYTE */
  199.