Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:memset64() - Fill a memory area with a uint64_t*@s: Pointer to the start of the area.*@v: The value to fill the area with*@count: The number of values to store* Differs from memset() in that it fills with a uint64_t instead* of a byte

Proto:void *memset64(uint64_t *s, uint64_t v, size_t count)

Type:void

Parameter:

TypeParameterName
uint64_t *s
uint64_tv
size_tcount
808  xs = s
810  When count-- cycle
811  xs++ = v
812  Return s
Caller
NameDescribe
memset64_selftest