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

Function kcsan_memcmp

freebsd/kern/subr_csan.c:281–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281int
282kcsan_memcmp(const void *b1, const void *b2, size_t len)
283{
284 kcsan_access((uintptr_t)b1, len, false, false, __RET_ADDR);
285 kcsan_access((uintptr_t)b2, len, false, false, __RET_ADDR);
286 return __builtin_memcmp(b1, b2, len);
287}
288
289void *
290kcsan_memset(void *b, int c, size_t len)

Callers

nothing calls this directly

Calls 1

kcsan_accessFunction · 0.85

Tested by

no test coverage detected