函数源码 |
Source File:include\linux\bitops.h |
Create Date:2022-07-27 06:38:16 |
首页 | Copyright©Brick |
178 179 180 181 182 183 | static inline unsigned fls_long(unsigned long l) { if ( sizeof (l) == 4) return fls(l); return fls64(l); } |