mirror of https://github.com/n-hys/msun.git
105 lines
2.7 KiB
Groff
105 lines
2.7 KiB
Groff
.\" Copyright (c) 2005 David Schultz <das@FreeBSD.org>
|
|
.\" All rights reserved.
|
|
.\"
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
.\" modification, are permitted provided that the following conditions
|
|
.\" are met:
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
.\"
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
.\" SUCH DAMAGE.
|
|
.\"
|
|
.\" $FreeBSD$
|
|
.\"
|
|
.Dd January 13, 2008
|
|
.Dt LRINT 3
|
|
.Os
|
|
.Sh NAME
|
|
.Nm llrint ,
|
|
.Nm llrintf ,
|
|
.Nm llrintl ,
|
|
.Nm lrint ,
|
|
.Nm lrintf ,
|
|
.Nm lrintl
|
|
.Nd "convert to integer"
|
|
.Sh LIBRARY
|
|
.Lb libm
|
|
.Sh SYNOPSIS
|
|
.In math.h
|
|
.Ft "long long"
|
|
.Fn llrint "double x"
|
|
.Ft "long long"
|
|
.Fn llrintf "float x"
|
|
.Ft "long long"
|
|
.Fn llrintl "long double x"
|
|
.Ft long
|
|
.Fn lrint "double x"
|
|
.Ft long
|
|
.Fn lrintf "float x"
|
|
.Ft long
|
|
.Fn lrintl "long double x"
|
|
.Sh DESCRIPTION
|
|
The
|
|
.Fn lrint
|
|
function returns the integer nearest to its argument
|
|
.Fa x
|
|
according to the current rounding mode.
|
|
If the rounded result is too large to be represented as a
|
|
.Vt long
|
|
value, an invalid exception is raised and the return value is undefined.
|
|
Otherwise, if
|
|
.Fa x
|
|
is not an integer,
|
|
.Fn lrint
|
|
raises an inexact exception.
|
|
When the rounded result is representable as a
|
|
.Vt long ,
|
|
the expression
|
|
.Fn lrint x
|
|
is equivalent to
|
|
.Po Vt long Pc Ns Fn rint x
|
|
(although the former may be more efficient).
|
|
.Pp
|
|
The
|
|
.Fn llrint ,
|
|
.Fn llrintf ,
|
|
.Fn llrintl ,
|
|
.Fn lrintf ,
|
|
and
|
|
.Fn lrintl
|
|
functions differ from
|
|
.Fn lrint
|
|
only in their input and output types.
|
|
.Sh SEE ALSO
|
|
.Xr lround 3 ,
|
|
.Xr math 3 ,
|
|
.Xr rint 3 ,
|
|
.Xr round 3
|
|
.Sh STANDARDS
|
|
These functions conform to
|
|
.St -isoC-99 .
|
|
.Sh HISTORY
|
|
The
|
|
.Fn llrint ,
|
|
.Fn llrintf ,
|
|
.Fn lrint ,
|
|
and
|
|
.Fn lrintf
|
|
routines first appeared in
|
|
.Fx 5.4 .
|
|
The long double variants were introduced in
|
|
.Fx 8.0 .
|