[ 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.63.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: fls64.h
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_FLS64_H_ #define _ASM_GENERIC_BITOPS_FLS64_H_ #include <asm/types.h> /** * fls64 - find last set bit in a 64-bit word * @x: the word to search * * This is defined in a similar way as the libc and compiler builtin * ffsll, but returns the position of the most significant set bit. * * fls64(value) returns 0 if value is 0 or the position of the last * set bit if value is nonzero. The last (most significant) bit is * at position 64. */ #if BITS_PER_LONG == 32 static __always_inline int fls64(__u64 x) { __u32 h = x >> 32; if (h) return fls(h) + 32; return fls(x); } #elif BITS_PER_LONG == 64 static __always_inline int fls64(__u64 x) { if (x == 0) return 0; return __fls(x) + 1; } #else #error BITS_PER_LONG not 32 or 64 #endif #endif /* _ASM_GENERIC_BITOPS_FLS64_H_ */