summaryrefslogtreecommitdiff
path: root/mp_clz_tab.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2000-10-03 22:07:00 +0200
committertege <tege@gmplib.org>2000-10-03 22:07:00 +0200
commit1815220e161c7853063f84c01f1d4b89c4d6b2e4 (patch)
tree7eef086f68f0353193f9070435a3a6c910d4de1e /mp_clz_tab.c
parenta22b14c4e0838032f465143949b05dc310604b55 (diff)
downloadgmp-1815220e161c7853063f84c01f1d4b89c4d6b2e4.tar.gz
(__clz_tab): Half table size to 128 entires.
Diffstat (limited to 'mp_clz_tab.c')
-rw-r--r--mp_clz_tab.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/mp_clz_tab.c b/mp_clz_tab.c
index 1bbd1d6a6..a59f77b1f 100644
--- a/mp_clz_tab.c
+++ b/mp_clz_tab.c
@@ -23,14 +23,10 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
const
-unsigned char __clz_tab[] =
+unsigned char __clz_tab[128] =
{
- 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
- 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
+ 1,2,3,3,4,4,4,4,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
- 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
- 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
- 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
- 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8
};