Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros
bitops.h File Reference
#include <asm-generic/bitops.h>

Go to the source code of this file.

Macros

#define _ASM_GENERIC_BITOPS_FLS_H_
 
#define _ASM_GENERIC_BITOPS___FLS_H_
 
#define _ASM_GENERIC_BITOPS_FFS_H_
 
#define _ASM_GENERIC_BITOPS___FFS_H_
 
#define __fls(x)   (fls(x) - 1)
 
#define ffs(x)   ({ unsigned long __t = (x); fls(__t & -__t); })
 
#define __ffs(x)   (ffs(x) - 1)
 
#define find_next_bit   find_next_bit
 
#define find_next_zero_bit   find_next_zero_bit
 
#define find_first_bit   find_first_bit
 
#define find_first_zero_bit   find_first_zero_bit
 

Macro Definition Documentation

#define __ffs (   x)    (ffs(x) - 1)

Definition at line 37 of file bitops.h.

#define __fls (   x)    (fls(x) - 1)

Definition at line 35 of file bitops.h.

#define _ASM_GENERIC_BITOPS___FFS_H_

Definition at line 19 of file bitops.h.

#define _ASM_GENERIC_BITOPS___FLS_H_

Definition at line 17 of file bitops.h.

#define _ASM_GENERIC_BITOPS_FFS_H_

Definition at line 18 of file bitops.h.

#define _ASM_GENERIC_BITOPS_FLS_H_

Definition at line 16 of file bitops.h.

#define ffs (   x)    ({ unsigned long __t = (x); fls(__t & -__t); })

Definition at line 36 of file bitops.h.

#define find_first_bit   find_first_bit

Definition at line 44 of file bitops.h.

#define find_first_zero_bit   find_first_zero_bit

Definition at line 45 of file bitops.h.

#define find_next_bit   find_next_bit

Definition at line 42 of file bitops.h.

#define find_next_zero_bit   find_next_zero_bit

Definition at line 43 of file bitops.h.