xref: /dflybsd-src/contrib/gmp/mp_clz_tab.c (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
1*86d7f5d3SJohn Marino /* __clz_tab -- support for longlong.h
2*86d7f5d3SJohn Marino 
3*86d7f5d3SJohn Marino    THE CONTENTS OF THIS FILE ARE FOR INTERNAL USE AND MAY CHANGE
4*86d7f5d3SJohn Marino    INCOMPATIBLY OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
5*86d7f5d3SJohn Marino 
6*86d7f5d3SJohn Marino Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001 Free Software Foundation,
7*86d7f5d3SJohn Marino Inc.
8*86d7f5d3SJohn Marino 
9*86d7f5d3SJohn Marino This file is part of the GNU MP Library.
10*86d7f5d3SJohn Marino 
11*86d7f5d3SJohn Marino The GNU MP Library is free software; you can redistribute it and/or modify
12*86d7f5d3SJohn Marino it under the terms of the GNU Lesser General Public License as published by
13*86d7f5d3SJohn Marino the Free Software Foundation; either version 3 of the License, or (at your
14*86d7f5d3SJohn Marino option) any later version.
15*86d7f5d3SJohn Marino 
16*86d7f5d3SJohn Marino The GNU MP Library is distributed in the hope that it will be useful, but
17*86d7f5d3SJohn Marino WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18*86d7f5d3SJohn Marino or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
19*86d7f5d3SJohn Marino License for more details.
20*86d7f5d3SJohn Marino 
21*86d7f5d3SJohn Marino You should have received a copy of the GNU Lesser General Public License
22*86d7f5d3SJohn Marino along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
23*86d7f5d3SJohn Marino 
24*86d7f5d3SJohn Marino #include "gmp.h"
25*86d7f5d3SJohn Marino #include "gmp-impl.h"
26*86d7f5d3SJohn Marino #include "longlong.h"
27*86d7f5d3SJohn Marino 
28*86d7f5d3SJohn Marino #ifdef COUNT_LEADING_ZEROS_NEED_CLZ_TAB
29*86d7f5d3SJohn Marino const
30*86d7f5d3SJohn Marino unsigned char __clz_tab[128] =
31*86d7f5d3SJohn Marino {
32*86d7f5d3SJohn Marino   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,
33*86d7f5d3SJohn Marino   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,
34*86d7f5d3SJohn Marino   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,
35*86d7f5d3SJohn Marino   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
36*86d7f5d3SJohn Marino };
37*86d7f5d3SJohn Marino #endif
38