1MEMSET64(9) Basic C Library Functions MEMSET64(9)
2
3
4
6 memset64 - Fill a memory area with a uint64_t
7
9 void * memset64(uint64_t * s, uint64_t v, size_t count);
10
12 s
13 Pointer to the start of the area.
14
15 v
16 The value to fill the area with
17
18 count
19 The number of values to store
20
22 Differs from memset in that it fills with a uint64_t instead of a byte.
23 Remember that count is the number of uint64_ts to store, not the number
24 of bytes.
25
27Kernel Hackers Manual 3.10 June 2019 MEMSET64(9)