Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\test_hash.c Create Date:2022-07-28 06:28:51
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:32-bit XORSHIFT generator. Seed must not be zero.

Proto:static u32 __init __attribute_const__ xorshift(u32 seed)

Type:u32

Parameter:

TypeParameterName
u32seed
30  seed ^= seed << 13
31  seed ^= seed >> 17
32  seed ^= seed << 5
33  Return seed