2N/A * The contents of this file are subject to the terms of the 2N/A * Common Development and Distribution License, Version 1.0 only 2N/A * (the "License"). You may not use this file except in compliance 2N/A * See the License for the specific language governing permissions 2N/A * and limitations under the License. 2N/A * When distributing Covered Code, include this CDDL HEADER in each 2N/A * If applicable, add the following below this CDDL HEADER, with the 2N/A * fields enclosed by brackets "[]" replaced with your own identifying 2N/A * information: Portions Copyright [yyyy] [name of copyright owner] 2N/A * Copyright (c) 1994-1997, by Sun Microsystems, Inc. 2N/A * All rights reserved. 2N/A#
pragma ident "%Z%%M% %I% %E% SMI" 2N/A * _Qp_qtox(x) returns (long)*x. 2N/A /* handle nan, inf, and out-of-range cases */ 2N/A /* return largest negative 64 bit int */ 2N/A i =
0x8000000000000000ul;
2N/A /* signal inexact */ 2N/A i = ((x->l.
msw &
0x80000000)?
0x8000000000000000ul :
2N/A 0x7fffffffffffffffl);
2N/A /* signal inexact */ 2N/A /* now x is in the range of 64 bit int */ 2N/A i =
0x4000000000000000l | ((
long) (
xm &
0xffff) <<
46) |
2N/A i >>= (
0x403d - (
xm >>
16));
2N/A /* signal inexact */