Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\crc32.c Create Date:2022-07-28 06:55:49
Last Modify:2020-03-16 11:24:07 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:rc32_be_generic() - Calculate bitwise big-endian Ethernet AUTODIN II CRC32*@crc: seed value for computation

Proto:static inline u32 __pure crc32_be_generic(u32 crc, unsigned char const *p, size_t len, const u32 (*tab)[256], u32 polynomial)

Type:u32

Parameter:

TypeParameterName
u32crc
unsigned char const *p
size_tlen
const u32 (*tab
u32polynomial
327  crc = __cpu_to_be32(crc)
328  crc = mplements slicing-by-4 or slicing-by-8 algorithm
329  crc = __be32_to_cpu((__force__be32)crc)
331  Return crc
Caller
NameDescribe
crc32_be