| 55 | extern inline zap_leaf_phys_t *zap_leaf_phys(zap_leaf_t *l); |
| 56 | |
| 57 | static void |
| 58 | zap_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 | |
| 67 | static void |
| 68 | stv(int len, void *addr, uint64_t value) |
no outgoing calls
no test coverage detected