You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
/* |
|
** Copyright (c) 2011 MediaTek Inc. All Rights Reserved. |
|
** -------------------- |
|
** This software is protected by copyright and the information contained |
|
** herein is confidential. The software may not be copied and the information |
|
** contained herein may no be used or disclosed except with the written |
|
** permission of MediaTek Inc. |
|
** |
|
** float.h |
|
*/ |
|
|
|
#ifndef _FLOAT_H |
|
#define _FLOAT_H |
|
|
|
#if defined(__MD32__) |
|
#include <md32_bril.h> |
|
#endif |
|
|
|
#define FLT_ROUNDS 1 |
|
#define FLT_EVAL_METHOD 0 |
|
#define DECIMAL_DIG 21 |
|
|
|
#define FLT_RADIX 2 |
|
#define FLT_MANT_DIG 24 |
|
#define FLT_DIG 6 |
|
#define FLT_EPSILON 1.19209290e-07F |
|
#define FLT_MIN_EXP (-125) |
|
#define FLT_MIN 1.17549435e-38F |
|
#define FLT_MIN_10_EXP (-37) |
|
#define FLT_MAX_EXP 128 |
|
#define FLT_MAX 3.40282347e+38F |
|
#define FLT_MAX_10_EXP 38 |
|
|
|
#define DBL_MANT_DIG 53 |
|
#define DBL_DIG 15 |
|
#define DBL_EPSILON 2.2204460492503131e-16 |
|
#define DBL_MIN_EXP (-1021) |
|
#define DBL_MIN 2.2250738585072014e-308 |
|
#define DBL_MIN_10_EXP (-307) |
|
#define DBL_MAX_EXP 1024 |
|
#define DBL_MAX 1.7976931348623157e+308 |
|
#define DBL_MAX_10_EXP 308 |
|
|
|
#define LDBL_MANT_DIG DBL_MANT_DIG |
|
#define LDBL_DIG DBL_DIG |
|
#define LDBL_EPSILON DBL_EPSILON |
|
#define LDBL_MIN_EXP DBL_MIN_EXP |
|
#define LDBL_MIN DBL_MIN |
|
#define LDBL_MIN_10_EXP DBL_MIN_10_EXP |
|
#define LDBL_MAX_EXP DBL_MAX_EXP |
|
#define LDBL_MAX DBL_MAX |
|
#define LDBL_MAX_10_EXP DBL_MAX_10_EXP |
|
|
|
#endif /* float.h */
|
|
|