ack/mach/proto/fp/cif8.c

57 lines
1.2 KiB
C
Raw Normal View History

1988-04-07 11:40:46 +00:00
/*
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
1988-04-07 10:57:49 +00:00
/*
CONVERT INTEGER TO FLOAT (CIF n 8)
1988-04-07 10:57:49 +00:00
THIS ROUTINE WORKS BY FILLING AN EXTENDED
WITH THE INTEGER VALUE IN EXTENDED FORMAT
AND USES COMPACT() TO PUT IT INTO THE PROPER
FLOATING POINT PRECISION.
*/
#include "FP_types.h"
_double
cif8(ss,src)
int ss; /* source size */
long src; /* largest possible integer to convert */
{
EXTEND buf;
_double *result; /* for return value */
short *ipt;
long i_src;
result = (_double *) &ss; /* always */
zrf_ext(&buf);
if (ss == sizeof(long)) {
1989-07-25 14:21:09 +00:00
buf.exp = 31;
1988-04-07 10:57:49 +00:00
i_src = src;
}
else {
ipt = (short *) &src;
i_src = (long) *ipt;
1989-07-25 14:21:09 +00:00
buf.exp = 15;
1988-04-07 10:57:49 +00:00
}
if (i_src == 0) {
zrf8(result);
return(*result);
}
/* ESTABLISHED THAT src != 0 */
/* adjust exponent field */
buf.sign = (i_src < 0) ? 0x8000 : 0;
/* clear sign bit of integer */
/* move to mantissa field */
buf.m1 = (i_src < 0) ? -i_src : i_src;
/* adjust mantissa field */
if (ss != sizeof(long))
buf.m1 <<= 16;
nrm_ext(&buf);
compact(&buf,result,8);
return(*result);
}