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".
29 e1
->l_32
|= (e1
->h_32
<< (32 - n
));
50 e1
->h_32
|= (e1
->l_32
>> (32 - n
));
61 /* shift left 1 bit */
63 if (e1
->l_32
& 0x80000000L
) e1
->h_32
|= 1;
71 /* shift right 1 bit */
73 if (e1
->h_32
& 1) e1
->l_32
|= 0x80000000L
;