Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
count_zeros.h
Go to the documentation of this file.
1 /* Count leading and trailing zeros functions
2  *
3  * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
4  * Written by David Howells ([email protected])
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public Licence
8  * as published by the Free Software Foundation; either version
9  * 2 of the Licence, or (at your option) any later version.
10  */
11 
12 #ifndef _ASM_GENERIC_BITOPS_COUNT_ZEROS_H_
13 #define _ASM_GENERIC_BITOPS_COUNT_ZEROS_H_
14 
15 #include <asm/bitops.h>
16 
27 static inline int count_leading_zeros(unsigned long x)
28 {
29  if (sizeof(x) == 4)
30  return BITS_PER_LONG - fls(x);
31  else
32  return BITS_PER_LONG - fls64(x);
33 }
34 
35 #define COUNT_LEADING_ZEROS_0 BITS_PER_LONG
36 
47 static inline int count_trailing_zeros(unsigned long x)
48 {
49 #define COUNT_TRAILING_ZEROS_0 (-1)
50 
51  if (sizeof(x) == 4)
52  return ffs(x);
53  else
54  return (x != 0) ? __ffs(x) : COUNT_TRAILING_ZEROS_0;
55 }
56 
57 #endif /* _ASM_GENERIC_BITOPS_COUNT_ZEROS_H_ */