OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:__ffs
(Results
1 - 4
of
4
) sorted by null
/external/kernel-headers/original/asm-generic/bitops/
__ffs.h
7
*
__ffs
- find first bit in word.
12
static inline unsigned long
__ffs
(unsigned long word)
function
/external/kernel-headers/original/asm-mips/
bitops.h
597
*
__ffs
- find first bit in word.
603
static inline unsigned long
__ffs
(unsigned long word)
function
651
#include <asm-generic/bitops/
__ffs
.h>
/external/kernel-headers/original/asm-x86/
bitops_32.h
357
*
__ffs
- find first bit in word.
362
static inline unsigned long
__ffs
(unsigned long word)
function
385
return
__ffs
(val) + x;
/external/kernel-headers/original/asm-arm/
bitops.h
236
#include <asm-generic/bitops/
__ffs
.h>
280
#define
__ffs
(x) (ffs(x) - 1)
macro
281
#define ffz(x)
__ffs
( ~(x) )
Completed in 239 milliseconds