4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
26 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
27 * Use is subject to license terms.
31 * ceill(x) return the biggest integral value below x
32 * floorl(x) return the least integral value above x
34 * NOTE: aintl(x), anintl(x), ceill(x), floorl(x), and rintl(x) return result
35 * with the same sign as x's, including 0.0.
38 #pragma weak __ceill = ceill
39 #pragma weak __floorl = floorl
42 #include "longdouble.h"
44 static const long double qone
= 1.0L;
47 ceill(long double x
) {
53 if (t
>= x
) /* already ceil(x) */
55 else /* t < x case: return t+1 */
56 return (copysignl(t
+ qone
, x
));
60 floorl(long double x
) {
67 return (t
); /* already floor(x) */
68 else /* x < t case: return t-1 */
69 return (copysignl(t
- qone
, x
));