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

Function zap_memset

freebsd/contrib/openzfs/module/zfs/zap_leaf.c:57–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55extern inline zap_leaf_phys_t *zap_leaf_phys(zap_leaf_t *l);
56
57static void
58zap_memset(void *a, int c, size_t n)
59{
60 char *cp = a;
61 char *cpend = cp + n;
62
63 while (cp < cpend)
64 *cp++ = c;
65}
66
67static void
68stv(int len, void *addr, uint64_t value)

Callers 2

zap_leaf_initFunction · 0.85
zap_leaf_splitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected