MCPcopy Create free account
hub / github.com/F-Stack/f-stack / kcsan_memset

Function kcsan_memset

freebsd/kern/subr_csan.c:289–294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

287}
288
289void *
290kcsan_memset(void *b, int c, size_t len)
291{
292 kcsan_access((uintptr_t)b, len, true, false, __RET_ADDR);
293 return __builtin_memset(b, c, len);
294}
295
296void *
297kcsan_memmove(void *dst, const void *src, size_t len)

Callers

nothing calls this directly

Calls 1

kcsan_accessFunction · 0.85

Tested by

no test coverage detected