gptzfsboot and zfsloader can't find slices inside PTABLE_VTOC label after 9099
[unleashed.git] / share / man / man3m / fdim.3m
blob97cc1b350d36402cfd71d0df7ea081f892711aed
1 '\" te
2 .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved.
3 .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved.
4 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
5 .\" http://www.opengroup.org/bookstore/.
6 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
7 .\"  This notice shall appear on any product containing this material.
8 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
9 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
10 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
11 .TH FDIM 3M "Jul 12, 2006" "SunOS 5.11" "Mathematical Library Functions"
12 .SH NAME
13 fdim, fdimf, fdiml \- compute positive difference between two floating-point
14 numbers
15 .SH SYNOPSIS
16 .LP
17 .nf
18 c99 [ \fIflag\fR... ] \fIfile\fR... \fB-lm\fR [ \fIlibrary\fR... ]
19 #include <math.h>
21 \fBdouble\fR \fBfdim\fR(\fBdouble\fR \fIx\fR, \fBdouble\fR \fIy\fR);
22 .fi
24 .LP
25 .nf
26 \fBfloat\fR \fBfdimf\fR(\fBfloat\fR \fIx\fR, \fBfloat\fR \fIy\fR);
27 .fi
29 .LP
30 .nf
31 \fBlong double\fR \fBfdiml\fR(\fBlong double\fR \fIx\fR, \fBlong double\fR \fIy\fR);
32 .fi
34 .SH DESCRIPTION
35 .sp
36 .LP
37 These functions determine the positive difference between their arguments. If
38 \fIx\fR is greater than \fIy\fR, \fIx\fR\(mi\fIy\fR is returned. If \fIx\fR is
39 less than or equal to \fIy\fR, +0 is returned.
40 .SH RETURN VALUES
41 .sp
42 .LP
43 Upon successful completion, these functions return the positive difference
44 value.
45 .sp
46 .LP
47 If \fIx\fR\(mi\fIy\fR is positive and overflows, a range error occurs and
48 \fBfdim()\fR, \fBfdimf()\fR, and \fBfdiml()\fR returns the value of the macro
49 \fBHUGE_VAL\fR, \fBHUGE_VALF\fR, and \fBHUGE_VALL\fR, respectively.
50 .sp
51 .LP
52 If \fIx\fR or \fIy\fR is NaN, a NaN is returned.
53 .SH ERRORS
54 .sp
55 .LP
56 These functions will fail if:
57 .sp
58 .ne 2
59 .mk
60 .na
61 \fBRange Error\fR
62 .ad
63 .RS 15n
64 .rt
65 The result overflows.
66 .sp
67 If the integer expression (\fBmath_errhandling\fR & \fBMATH_ERREXCEPT\fR) is
68 non-zero, the overflow floating-point exception will be raised.
69 .RE
71 .SH USAGE
72 .sp
73 .LP
74 An application wanting to check for exceptions should call
75 \fBfeclearexcept\fR(\fBFE_ALL_EXCEPT\fR) before calling these functions. On
76 return, if \fBfetestexcept\fR(\fBFE_INVALID\fR | \fBFE_DIVBYZERO\fR |
77 \fBFE_OVERFLOW\fR | \fBFE_UNDERFLOW\fR) is non-zero, an exception has been
78 raised. An application should either examine the return value or check the
79 floating point exception flags to detect exceptions.
80 .SH ATTRIBUTES
81 .sp
82 .LP
83 See \fBattributes\fR(5) for descriptions of the following attributes:
84 .sp
86 .sp
87 .TS
88 tab(    ) box;
89 cw(2.75i) |cw(2.75i)
90 lw(2.75i) |lw(2.75i)
92 ATTRIBUTE TYPE  ATTRIBUTE VALUE
94 Interface Stability     Standard
96 MT-Level        MT-Safe
97 .TE
99 .SH SEE ALSO
102 \fBfeclearexcept\fR(3M), \fBfetestexcept\fR(3M), \fBfmax\fR(3M),
103 \fBfmin\fR(3M), \fBmath.h\fR(3HEAD), \fBattributes\fR(5), \fBstandards\fR(5)