The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/powerpc/include/ieeefp.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* -
    2  * Written by J.T. Conklin, Apr 6, 1995
    3  * Public domain.
    4  * $NetBSD: ieeefp.h,v 1.2 1999/07/07 01:52:26 danw Exp $
    5  * $FreeBSD$
    6  */
    7 
    8 #ifndef _MACHINE_IEEEFP_H_
    9 #define _MACHINE_IEEEFP_H_
   10 
   11 /* Deprecated historical FPU control interface */
   12 
   13 typedef int fp_except_t;
   14 #ifdef __SPE__
   15 #define FP_X_OFL        0x01    /* overflow exception */
   16 #define FP_X_UFL        0x02    /* underflow exception */
   17 #define FP_X_DZ         0x04    /* divide-by-zero exception */
   18 #define FP_X_INV        0x08    /* invalid operation exception */
   19 #define FP_X_IMP        0x10    /* imprecise (loss of precision) */
   20 #else
   21 #define FP_X_IMP        0x01    /* imprecise (loss of precision) */
   22 #define FP_X_DZ         0x02    /* divide-by-zero exception */
   23 #define FP_X_UFL        0x04    /* underflow exception */
   24 #define FP_X_OFL        0x08    /* overflow exception */
   25 #define FP_X_INV        0x10    /* invalid operation exception */
   26 #endif
   27 
   28 typedef enum {
   29     FP_RN=0,                    /* round to nearest representable number */
   30     FP_RZ=1,                    /* round to zero (truncate) */
   31     FP_RP=2,                    /* round toward positive infinity */
   32     FP_RM=3                     /* round toward negative infinity */
   33 } fp_rnd_t;
   34 
   35 __BEGIN_DECLS
   36 extern fp_rnd_t    fpgetround(void);
   37 extern fp_rnd_t    fpsetround(fp_rnd_t);
   38 extern fp_except_t fpgetmask(void);
   39 extern fp_except_t fpsetmask(fp_except_t);
   40 extern fp_except_t fpgetsticky(void);
   41 __END_DECLS
   42 
   43 #endif /* _MACHINE_IEEEFP_H_ */

Cache object: 3f8e0734a1728d31b7067a0f850b7330


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.