函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\find_bit.c Create Date:2022-07-27 07:21:36
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:find_next_clump8

函数原型:unsigned long find_next_clump8(unsigned long *clump, const unsigned long *addr, unsigned long size, unsigned long offset)

返回类型:unsigned long

参数:

类型参数名称
unsigned long *clump
const unsigned long *addr
unsigned longsize
unsigned longoffset
221  offset等于在内存区域中找到下一个设置位
222  如果offset恒等于size则返回:size
225  offset等于und_down - round down to next specified power of 2*@x: the value to round*@y: multiple to round down to (must be a power of 2)* Rounds @x down to next multiple of @y (which must be a power of 2).* To perform arbitrary rounding down, use rounddown() below.(offset, 8)
226  clump等于map_get_value8 - get an 8-bit value within a memory region*@map: address to the bitmap memory region*@start: bit offset of the 8-bit value; must be a multiple of 8* Returns the 8-bit value located at the @start bit offset within the @src* memory region.
228  返回:offset