[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
include
/
asm-generic
/
bitops
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 __ffs.h
777 B
SET
[ EDIT ]
|
[ DEL ]
📄 __fls.h
920 B
SET
[ EDIT ]
|
[ DEL ]
📄 arch_hweight.h
555 B
SET
[ EDIT ]
|
[ DEL ]
📄 atomic.h
1,511 B
SET
[ EDIT ]
|
[ DEL ]
📄 builtin-__ffs.h
379 B
SET
[ EDIT ]
|
[ DEL ]
📄 builtin-__fls.h
436 B
SET
[ EDIT ]
|
[ DEL ]
📄 builtin-ffs.h
410 B
SET
[ EDIT ]
|
[ DEL ]
📄 builtin-fls.h
403 B
SET
[ EDIT ]
|
[ DEL ]
📄 const_hweight.h
1,711 B
SET
[ EDIT ]
|
[ DEL ]
📄 ext2-atomic-setbit.h
403 B
SET
[ EDIT ]
|
[ DEL ]
📄 ext2-atomic.h
600 B
SET
[ EDIT ]
|
[ DEL ]
📄 ffs.h
654 B
SET
[ EDIT ]
|
[ DEL ]
📄 ffz.h
325 B
SET
[ EDIT ]
|
[ DEL ]
📄 find.h
3,244 B
SET
[ EDIT ]
|
[ DEL ]
📄 fls.h
674 B
SET
[ EDIT ]
|
[ DEL ]
📄 fls64.h
860 B
SET
[ EDIT ]
|
[ DEL ]
📄 hweight.h
254 B
SET
[ EDIT ]
|
[ DEL ]
📄 le.h
2,239 B
SET
[ EDIT ]
|
[ DEL ]
📄 lock.h
2,505 B
SET
[ EDIT ]
|
[ DEL ]
📄 non-atomic.h
3,535 B
SET
[ EDIT ]
|
[ DEL ]
📄 sched.h
760 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: builtin-ffs.h
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_BUILTIN_FFS_H_ #define _ASM_GENERIC_BITOPS_BUILTIN_FFS_H_ /** * ffs - find first bit set * @x: the word to search * * This is defined the same way as * the libc and compiler builtin ffs routines, therefore * differs in spirit from the above ffz (man ffs). */ static __always_inline int ffs(int x) { return __builtin_ffs(x); } #endif