float.h 5.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*****************************************************************************/
  2. /* float.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1993-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. /********************************************************************/
  38. /* KEY: FLT_ - APPLIES TO TYPE FLOAT */
  39. /* DBL_ - APPLIES TO TYPE DOUBLE */
  40. /* LDBL_ - APPLIES TO TYPE LONG DOUBLE */
  41. /********************************************************************/
  42. #ifndef _FLOAT_H_
  43. #define _FLOAT_H_
  44. #pragma diag_push
  45. #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */
  46. #define FLT_RADIX 2 /* RADIX OF EXPONENT */
  47. #define FLT_ROUNDS 1 /* ROUND TO NEAREST */
  48. #define FLT_EVAL_METHOD (-1) /* INDETERMINABLE */
  49. #define FLT_DIG 6 /* DECIMAL PRECISION */
  50. #define FLT_MANT_DIG 24 /* BITS IN MANTISSA */
  51. #define FLT_MIN_EXP (-125) /* SMALLEST EXPONENT */
  52. #define FLT_MAX_EXP 128 /* LARGEST EXPONENT */
  53. #define FLT_MIN_10_EXP (-37) /* MIN POWER OF 10 */
  54. #define FLT_MAX_10_EXP 38 /* MAX POWER OF 10 */
  55. #define FLT_EPSILON 1.192092896E-07F /* SMALLEST X WHERE 1+X != 1 */
  56. #define FLT_MIN 1.175494351E-38F /* SMALLEST POSITIVE VALUE */
  57. #define FLT_MAX 3.402823466E+38F /* LARGEST POSITIVE VALUE */
  58. #define DBL_DIG 15 /* DECIMAL PRECISION */
  59. #define DBL_MANT_DIG 53 /* BITS IN MANTISSA */
  60. #define DBL_MIN_EXP (-1021) /* SMALLEST EXPONENT */
  61. #define DBL_MAX_EXP 1024 /* LARGEST EXPONENT */
  62. #define DBL_MIN_10_EXP (-307) /* MIN POWER OF 10 */
  63. #define DBL_MAX_10_EXP 308 /* MAX POWER OF 10 */
  64. #define DBL_EPSILON 2.2204460492503131E-16 /* SMALLEST X WHERE 1+X != 1 */
  65. #define DBL_MIN 2.2250738585072014E-308 /* SMALLEST POSITIVE VALUE */
  66. #define DBL_MAX 1.7976931348623157E+308 /* LARGEST POSITIVE VALUE */
  67. #define LDBL_DIG 15 /* DECIMAL PRECISION */
  68. #define LDBL_MANT_DIG 53 /* BITS IN MANTISSA */
  69. #define LDBL_MIN_EXP (-1021) /* SMALLEST EXPONENT */
  70. #define LDBL_MAX_EXP 1024 /* LARGEST EXPONENT */
  71. #define LDBL_MIN_10_EXP (-307) /* MIN POWER OF 10 */
  72. #define LDBL_MAX_10_EXP 308 /* MAX POWER OF 10 */
  73. #define LDBL_EPSILON 2.2204460492503131E-16L /* SMALLEST X WHERE 1+X != 1 */
  74. #define LDBL_MIN 2.2250738585072014E-308L /* SMALLEST POSITIVE VALUE */
  75. #define LDBL_MAX 1.7976931348623157E+308L /* LARGEST POSITIVE VALUE */
  76. #pragma diag_pop
  77. #endif /* _FLOAT_H_ */