windows-nt/Source/XPSP1/NT/base/crts/crtw32/stdcpp/xfdnorm.c

36 lines
856 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/* _FDnorm function -- IEEE 754 version */
#include "xmath.h"
_STD_BEGIN
_CRTIMP2 short __cdecl _FDnorm(unsigned short *ps)
{ /* normalize float fraction */
short xchar;
unsigned short sign = ps[_F0] & _FSIGN;
xchar = 1;
if ((ps[_F0] &= _FFRAC) != 0 || ps[_F1])
{ /* nonzero, scale */
if (ps[_F0] == 0)
ps[_F0] = ps[_F1], ps[_F1] = 0, xchar -= 16;
for (; ps[_F0] < 1 << _FOFF; --xchar)
{ /* shift left by 1 */
ps[_F0] = ps[_F0] << 1 | ps[_F1] >> 15;
ps[_F1] <<= 1;
}
for (; 1 << (_FOFF + 1) <= ps[_F0]; ++xchar)
{ /* shift right by 1 */
ps[_F1] = ps[_F1] >> 1 | ps[_F0] << 15;
ps[_F0] >>= 1;
}
ps[_F0] &= _FFRAC;
}
ps[_F0] |= sign;
return (xchar);
}
_STD_END
/*
* Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
* Consult your license regarding permissions and restrictions.
V3.10:0009 */