函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\linux\math64.h Create Date:2022-07-27 06:38:29
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:mul_u64_u64_shr

函数原型:static inline u64 mul_u64_u64_shr(u64 a, u64 b, unsigned int shift)

返回类型:u64

参数:

类型参数名称
u64a
u64b
unsigned intshift
212  union{u64 ll;struct{u32 low, high;}l;}rl, rm, rn, rh, a0, b0
224  ll等于a
225  ll等于b
227  ll等于mul_u32_u32(low, low)
228  ll等于mul_u32_u32(low, high)
229  ll等于mul_u32_u32(high, low)
230  ll等于mul_u32_u32(high, high)
237  high等于c等于highlowlow
238  low等于c等于c右移32位的值加highhighlow
239  high等于c右移32位的值加high
245  如果shift恒等于0则返回:ll
247  如果shift小于64则返回:ll右移shift位按位或ll左移64减shift
249  返回:ll右移shift按位与63的值位