Searched refs:ffs (Results 26 - 50 of 131) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dsignal.c144 while((sig = ffs(pending)) != 0){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/sni/
H A Da20r.c189 irq = ffs(((cause & status) >> 8) & 0xf8);
H A Drm200.c156 irq = ffs(stat & mask & 0x1f);
H A Dpcimt.c258 irq = PCIMT_IRQ_INT2 + ffs(pend) - 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mtd/devices/
H A Dpmc551.c565 msize = (1 << (ffs(msize) - 1)) << 20;
574 asize = (1 << (ffs(asize) - 1)) << 20;
663 ffs(priv->asize >> 20) - 1);
668 | (ffs(priv->asize >> 20) - 1) << 4);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-parisc/
H A Dbitops.h168 * ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set)
170 * ffs routines, therefore differs in spirit from the above ffz (man ffs).
172 static __inline__ int ffs(int x) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-frv/
H A Dbitops.h166 * This is defined the same way as ffs:
191 * This is defined the same way as ffs:
229 * ffs - find first bit set
236 int ffs(int x) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-h8300/
H A Dbitops.h178 #include <asm-generic/bitops/ffs.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dbitops.h361 * ffs - find first bit set
365 * the libc and compiler builtin ffs routines, therefore
366 * differs in spirit from the above ffz() (man ffs).
368 static inline int ffs(int x) function
383 * This is defined the same way as ffs().
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m32r/
H A Dbitops.h256 #include <asm-generic/bitops/ffs.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-v850/
H A Dbitops.h141 #include <asm-generic/bitops/ffs.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-blackfin/
H A Dbitops.h14 #include <asm-generic/bitops/ffs.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/sysdev/
H A Duic.c208 src = 32 - ffs(msr);
336 src = 32 - ffs(msr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dcfbfillrect.c321 dst += dst_idx >> (ffs(bits) - 1);
351 dst += dst_idx >> (ffs(bits) - 1);
H A Dsysfillrect.c287 dst += dst_idx >> (ffs(bits) - 1);
318 dst += dst_idx >> (ffs(bits) - 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Dbitops.h506 * This is defined the same way as ffs.
528 * ffs - find first bit set.
532 * the libc and compiler builtin ffs routines, therefore
533 * differs in spirit from the above ffz (man ffs).
535 static inline int ffs(int word) function
546 #include <asm-generic/bitops/ffs.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Dbitops.h286 * ffs: find first bit set. This is defined the same way as
287 * the libc and compiler builtin ffs routines, therefore
288 * differs in spirit from the above ffz (man ffs).
291 static inline int ffs(int x) function
299 #define __ffs(x) (ffs(x) - 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Dbitops.h506 * This is defined the same way as ffs.
528 * ffs - find first bit set.
532 * the libc and compiler builtin ffs routines, therefore
533 * differs in spirit from the above ffz (man ffs).
535 static inline int ffs(int word) function
546 #include <asm-generic/bitops/ffs.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Ddm-exception-store.c220 ps->snap->chunk_shift = ffs(ps->snap->chunk_size) - 1;
268 ps->snap->chunk_shift = ffs(chunk_size) - 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/mm/
H A Dpgtable.c317 #define is_power_of_4(x) is_power_of_2(x) && (ffs(x) & 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/syslib/
H A Dmpc52xx_pic.c247 irq = ffs(status) + MPC52xx_SDMA_IRQ_BASE-1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dsim710.c305 scsi_id = ffs(val) - 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dpcm_params.h93 return ffs(mask->bits[i]) - 1 + (i << 5);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dbitops.h245 * ffs: find first bit set. This is defined the same way as
246 * the libc and compiler builtin ffs routines, therefore
247 * differs in spirit from the above ffz (man ffs).
249 static __inline__ int ffs(int x) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/
H A Dbitops.h351 * ffs: find first bit set. This is defined the same way as the libc and
352 * compiler builtin ffs routines, therefore differs in spirit from the above
353 * ffz (man ffs): it operates on "int" values only and the result value is the
354 * bit number + 1. ffs(0) is defined to return zero.
356 #define ffs(x) __builtin_ffs(x) macro

Completed in 248 milliseconds

123456