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/sparc64/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  * $FreeBSD: releng/6.4/sys/sparc64/include/ieeefp.h 139825 2005-01-07 02:29:27Z imp $
    5  */
    6 
    7 #ifndef _MACHINE_IEEEFP_H_
    8 #define _MACHINE_IEEEFP_H_
    9 
   10 #include <machine/fsr.h>
   11 
   12 typedef int fp_except_t;
   13 #define FP_X_IMP        FSR_NX  /* imprecise (loss of precision) */
   14 #define FP_X_DZ         FSR_DZ  /* divide-by-zero exception */
   15 #define FP_X_UFL        FSR_UF  /* underflow exception */
   16 #define FP_X_OFL        FSR_OF  /* overflow exception */
   17 #define FP_X_INV        FSR_NV  /* invalid operation exception */
   18 
   19 typedef enum {
   20         FP_RN = FSR_RD_N,       /* round to nearest representable number */
   21         FP_RZ = FSR_RD_Z,       /* round to zero (truncate) */
   22         FP_RP = FSR_RD_PINF,    /* round toward positive infinity */
   23         FP_RM = FSR_RD_NINF     /* round toward negative infinity */
   24 } fp_rnd_t;
   25 
   26 #endif /* _MACHINE_IEEEFP_H_ */

Cache object: 516b78173a3822b12f4f12d9901dcbdc


[ 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.