forget difference between big and small commands - obsolete with vm.
[minix.git] / lib / ack / fphook / nrm_ext.fc
blobdc83554b19488a34e5dc86f9c67b3a61d0233e1b
1 /*
2   (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
3   See the copyright notice in the ACK home directory, in the file "Copyright".
4 */
6 /* $Header$ */
8 /********************************************************/
9 /*
10         NORMALIZE an EXTENDED FORMAT NUMBER
12 /********************************************************/
14 #include "FP_shift.h"
15 #include "FP_types.h"
17 void
18 nrm_ext(e1)
19 EXTEND  *e1;
21                 /* we assume that the mantissa != 0     */
22                 /* if it is then just return            */
23                 /* to let it be a problem elsewhere     */
24                 /* THAT IS, The exponent is not set to  */
25                 /* zero. If we don't test here an       */
26                 /* infinite loop is generated when      */
27                 /* mantissa is zero                     */
29         if ((e1->m1 | e1->m2) == 0L)
30                 return;
32                 /* if top word is zero mov low word     */
33                 /* to top word, adjust exponent value   */
34         if (e1->m1 == 0L)       {
35                 e1->m1 = e1->m2;
36                 e1->m2 = 0L;
37                 e1->exp -= 32;
38         }
39         if ((e1->m1 & NORMBIT) == 0) {
40                 unsigned long l = ((unsigned long)NORMBIT >> 1);
41                 int cnt = -1;
43                 while (! (l & e1->m1)) {
44                         l >>= 1;
45                         cnt--;
46                 }
47                 e1->exp += cnt;
48                 b64_sft(&(e1->mantissa), cnt);
49         }