]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/ldexp.3
fuse.4: fuse_entry_out: rework discussion of uniqueness of nodeid + generation
[thirdparty/man-pages.git] / man3 / ldexp.3
CommitLineData
fea681da 1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
a57ce78d
MK
2.\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3.\" <mtk.manpages@gmail.com>
fea681da 4.\"
93015253 5.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
6.\" Permission is granted to make and distribute verbatim copies of this
7.\" manual provided the copyright notice and this permission notice are
8.\" preserved on all copies.
9.\"
10.\" Permission is granted to copy and distribute modified versions of this
11.\" manual under the conditions for verbatim copying, provided that the
12.\" entire resulting derived work is distributed under the terms of a
13.\" permission notice identical to this one.
c13182ef 14.\"
fea681da
MK
15.\" Since the Linux kernel and libraries are constantly changing, this
16.\" manual page may be incorrect or out-of-date. The author(s) assume no
17.\" responsibility for errors or omissions, or for damages resulting from
18.\" the use of the information contained herein. The author(s) may not
19.\" have taken the same level of care in the production of this manual,
20.\" which is licensed free of charge, as they might when working
21.\" professionally.
c13182ef 22.\"
fea681da
MK
23.\" Formatted or processed versions of this manual, if unaccompanied by
24.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 25.\" %%%LICENSE_END
fea681da
MK
26.\"
27.\" References consulted:
28.\" Linux libc source code
29.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
30.\" 386BSD man pages
31.\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
32.\" Modified 2004-10-31 by aeb
33.\"
97986708 34.TH LDEXP 3 2016-03-15 "" "Linux Programmer's Manual"
fea681da
MK
35.SH NAME
36ldexp, ldexpf, ldexpl \- multiply floating-point number by integral power of 2
37.SH SYNOPSIS
38.nf
39.B #include <math.h>
40.sp
41.BI "double ldexp(double " x ", int " exp );
42.br
43.BI "float ldexpf(float " x ", int " exp );
44.br
45.BI "long double ldexpl(long double " x ", int " exp );
46.fi
47.sp
20c58d70 48Link with \fI\-lm\fP.
a57ce78d
MK
49.sp
50.in -4n
51Feature Test Macro Requirements for glibc (see
52.BR feature_test_macros (7)):
53.in
54.sp
55.ad l
56.BR ldexpf (),
57.BR ldexpl ():
b90c43a8 58.RS 4
e9d91bcf
MK
59_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
60 || /* Since glibc 2.19: */ _DEFAULT_SOURCE
61 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
b90c43a8
MK
62.RE
63.ad
fea681da 64.SH DESCRIPTION
5600f73a 65These functions return the result of multiplying the floating-point number
fea681da
MK
66.I x
67by 2 raised to the power
68.IR exp .
a57ce78d
MK
69.SH RETURN VALUE
70On success, these functions return
71.IR "x * (2^exp)" .
72
73If
74.I exp
75is zero, then
76.I x
77is returned.
78
79If
80.I x
81is a NaN,
82a NaN is returned.
83
84If
85.I x
86is positive infinity (negative infinity),
87positive infinity (negative infinity) is returned.
88
89If the result underflows,
371b557b 90a range error occurs,
a57ce78d
MK
91and zero is returned.
92
93If the result overflows,
efe294cb 94a range error occurs,
a57ce78d
MK
95and the functions return
96.BR HUGE_VAL ,
97.BR HUGE_VALF ,
98or
99.BR HUGE_VALL ,
100respectively, with a sign the same as
101.IR x .
102.SH ERRORS
103See
104.BR math_error (7)
105for information on how to determine whether an error has occurred
106when calling these functions.
107.PP
108The following errors can occur:
109.TP
110Range error, overflow
111.I errno
112is set to
113.BR ERANGE .
114An overflow floating-point exception
115.RB ( FE_OVERFLOW )
116is raised.
117.TP
118Range error, underflow
119.I errno
120is set to
121.BR ERANGE .
122An underflow floating-point exception
123.RB ( FE_UNDERFLOW )
124is raised.
742e3682 125.SH ATTRIBUTES
23514ee4
MK
126For an explanation of the terms used in this section, see
127.BR attributes (7).
128.TS
129allbox;
130lbw27 lb lb
131l l l.
132Interface Attribute Value
133T{
742e3682
PH
134.BR ldexp (),
135.BR ldexpf (),
742e3682 136.BR ldexpl ()
23514ee4
MK
137T} Thread safety MT-Safe
138.TE
47297adb 139.SH CONFORMING TO
9a74e018 140C99, POSIX.1-2001, POSIX.1-2008.
e05e3635 141
a57ce78d
MK
142The variant returning
143.I double
144also conforms to
68e1685c 145SVr4, 4.3BSD, C89.
47297adb 146.SH SEE ALSO
fea681da
MK
147.BR frexp (3),
148.BR modf (3),
a57ce78d 149.BR scalbln (3)