📄 shifter.c
字号:
/* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands. See the copyright notice in the ACK home directory, in the file "Copyright".*//* $Header: shifter.c,v 1.6 93/01/05 12:06:34 ceriel Exp $ */# include "FP_types.h"voidb64_sft(e1,n)B64 *e1;int n;{ if (n > 0) { if (n > 63) { e1->l_32 = 0; e1->h_32 = 0; return; } if (n >= 32) { e1->l_32 = e1->h_32; e1->h_32 = 0; n -= 32; } if (n > 0) { e1->l_32 >>= n; if (e1->h_32 != 0) { e1->l_32 |= (e1->h_32 << (32 - n)); e1->h_32 >>= n; } } return; } n = -n; if (n > 0) { if (n > 63) { e1->l_32 = 0; e1->h_32 = 0; return; } if (n >= 32) { e1->h_32 = e1->l_32; e1->l_32 = 0; n -= 32; } if (n > 0) { e1->h_32 <<= n; if (e1->l_32 != 0) { e1->h_32 |= (e1->l_32 >> (32 - n)); e1->l_32 <<= n; } } }}voidb64_lsft(e1)B64 *e1;{ /* shift left 1 bit */ e1->h_32 <<= 1; if (e1->l_32 & 0x80000000L) e1->h_32 |= 1; e1->l_32 <<= 1;}voidb64_rsft(e1)B64 *e1;{ /* shift right 1 bit */ e1->l_32 >>= 1; if (e1->h_32 & 1) e1->l_32 |= 0x80000000L; e1->h_32 >>= 1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -