os/ossrv/ossrv_pub/math_operations_api/inc/stdapis/float.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*-
sl@0
     2
 * Copyright (c) 1989 Regents of the University of California.
sl@0
     3
 * All rights reserved.
sl@0
     4
 *
sl@0
     5
 * Redistribution and use in source and binary forms, with or without
sl@0
     6
 * modification, are permitted provided that the following conditions
sl@0
     7
 * are met:
sl@0
     8
 * 1. Redistributions of source code must retain the above copyright
sl@0
     9
 *    notice, this list of conditions and the following disclaimer.
sl@0
    10
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    11
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    12
 *    documentation and/or other materials provided with the distribution.
sl@0
    13
 * 3. All advertising materials mentioning features or use of this software
sl@0
    14
 *    must display the following acknowledgement:
sl@0
    15
 *	This product includes software developed by the University of
sl@0
    16
 *	California, Berkeley and its contributors.
sl@0
    17
 * 4. Neither the name of the University nor the names of its contributors
sl@0
    18
 *    may be used to endorse or promote products derived from this software
sl@0
    19
 *    without specific prior written permission.
sl@0
    20
 *
sl@0
    21
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
sl@0
    22
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    23
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    24
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
sl@0
    25
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0
    26
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0
    27
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    28
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0
    29
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0
    30
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0
    31
 * SUCH DAMAGE.
sl@0
    32
 *
sl@0
    33
 *	from: @(#)float.h	7.1 (Berkeley) 5/8/90
sl@0
    34
 * $FreeBSD: src/sys/arm/include/float.h,v 1.5 2005/03/20 00:34:24 cognet Exp $
sl@0
    35
 */
sl@0
    36
sl@0
    37
#ifndef _MACHINE_FLOAT_H_
sl@0
    38
#define _MACHINE_FLOAT_H_ 1
sl@0
    39
sl@0
    40
#include <sys/cdefs.h>
sl@0
    41
sl@0
    42
__BEGIN_DECLS
sl@0
    43
extern int __flt_rounds(void);
sl@0
    44
__END_DECLS
sl@0
    45
sl@0
    46
#define FLT_RADIX	2		/* b */
sl@0
    47
#define FLT_ROUNDS	-1
sl@0
    48
#define	FLT_EVAL_METHOD	(-1)		/* XXX */
sl@0
    49
#define	DECIMAL_DIG	17		/* max precision in decimal digits */
sl@0
    50
sl@0
    51
#define FLT_MANT_DIG	24		/* p */
sl@0
    52
#define FLT_EPSILON	1.19209290E-07F	/* b**(1-p) */
sl@0
    53
#define FLT_DIG		6		/* floor((p-1)*log10(b))+(b == 10) */
sl@0
    54
#define FLT_MIN_EXP	(-125)		/* emin */
sl@0
    55
#define FLT_MIN		1.17549435E-38F	/* b**(emin-1) */
sl@0
    56
#define FLT_MIN_10_EXP	(-37)		/* ceil(log10(b**(emin-1))) */
sl@0
    57
#define FLT_MAX_EXP	128		/* emax */
sl@0
    58
#define FLT_MAX		3.40282347E+38F	/* (1-b**(-p))*b**emax */
sl@0
    59
#define FLT_MAX_10_EXP	38		/* floor(log10((1-b**(-p))*b**emax)) */
sl@0
    60
sl@0
    61
#define DBL_MANT_DIG	53
sl@0
    62
#define DBL_EPSILON	2.2204460492503131E-16
sl@0
    63
#define DBL_DIG		15
sl@0
    64
#define DBL_MIN_EXP	(-1021)
sl@0
    65
#define DBL_MIN		2.2250738585072014E-308
sl@0
    66
#define DBL_MIN_10_EXP	(-307)
sl@0
    67
#define DBL_MAX_EXP	1024
sl@0
    68
#define DBL_MAX		1.7976931348623157E+308
sl@0
    69
#define DBL_MAX_10_EXP	308
sl@0
    70
sl@0
    71
#define LDBL_MANT_DIG	DBL_MANT_DIG
sl@0
    72
#define LDBL_EPSILON	DBL_EPSILON
sl@0
    73
#define LDBL_DIG	DBL_DIG
sl@0
    74
#define LDBL_MIN_EXP	DBL_MIN_EXP
sl@0
    75
#define LDBL_MIN	DBL_MIN
sl@0
    76
#define LDBL_MIN_10_EXP	DBL_MIN_10_EXP
sl@0
    77
#define LDBL_MAX_EXP	DBL_MAX_EXP
sl@0
    78
#define LDBL_MAX	DBL_MAX
sl@0
    79
#define LDBL_MAX_10_EXP	DBL_MAX_10_EXP
sl@0
    80
#endif /* _MACHINE_FLOAT_H_ */