Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1702 - 1
/* Copyright (c) 2007, Dmitry Xmelkov
2
   All rights reserved.
3
 
4
   Redistribution and use in source and binary forms, with or without
5
   modification, are permitted provided that the following conditions are met:
6
 
7
   * Redistributions of source code must retain the above copyright
8
     notice, this list of conditions and the following disclaimer.
9
   * Redistributions in binary form must reproduce the above copyright
10
     notice, this list of conditions and the following disclaimer in
11
     the documentation and/or other materials provided with the
12
     distribution.
13
   * Neither the name of the copyright holders nor the names of
14
     contributors may be used to endorse or promote products derived
15
     from this software without specific prior written permission.
16
 
17
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
  POSSIBILITY OF SUCH DAMAGE. */
28
 
29
/* $Id: ntz.h 1217 2007-02-18 13:18:05Z dmix $  */
30
 
31
#ifndef _NTZ_H
32
#define _NTZ_H
33
 
34
/* Number of Tail Zeros:  ntz(x)= (ffs(x) ? ffs(x)-1 : 16)
35
   It works with all: cpp, gcc and gas expressions.     */
36
#define ntz(x)  \
37
        ( (1 & (((x) & 1) == 0))        \
38
        + (1 & (((x) & 3) == 0))        \
39
        + (1 & (((x) & 7) == 0))        \
40
        + (1 & (((x) & 017) == 0))      \
41
        + (1 & (((x) & 037) == 0))      \
42
        + (1 & (((x) & 077) == 0))      \
43
        + (1 & (((x) & 0177) == 0))     \
44
        + (1 & (((x) & 0377) == 0))     \
45
        + (1 & (((x) & 0777) == 0))     \
46
        + (1 & (((x) & 01777) == 0))    \
47
        + (1 & (((x) & 03777) == 0))    \
48
        + (1 & (((x) & 07777) == 0))    \
49
        + (1 & (((x) & 017777) == 0))   \
50
        + (1 & (((x) & 037777) == 0))   \
51
        + (1 & (((x) & 077777) == 0))   \
52
        + (1 & (((x) & 0177777) == 0)) )
53
 
54
#endif  /* !_NTZ_H */