| /freebsd/sys/contrib/openzfs/include/sys/ |
| H A D | zap.h | 211 uint64_t integer_size, uint64_t num_integers, void *buf); 222 uint64_t integer_size, uint64_t num_integers, void *buf, 226 int key_numints, uint64_t integer_size, uint64_t num_integers, void *buf); 228 int key_numints, uint64_t integer_size, uint64_t num_integers, void *buf); 230 int key_numints, uint64_t integer_size, uint64_t num_integers, void *buf, 241 uint64_t integer_size, uint64_t num_integers, void *buf); 243 uint64_t integer_size, uint64_t num_integers, void *buf, 254 int integer_size, uint64_t num_integers, 257 int integer_size, uint64_t num_integers, 260 int key_numints, int integer_size, uint64_t num_integers, [all …]
|
| H A D | zap_impl.h | 221 uint64_t integer_size, uint64_t num_integers, void *buf, 225 int fzap_add(zap_name_t *zn, uint64_t integer_size, uint64_t num_integers, 228 int integer_size, uint64_t num_integers, const void *val, 231 uint64_t *integer_size, uint64_t *num_integers); 238 uint64_t integer_size, uint64_t num_integers,
|
| H A D | zap_leaf.h | 211 uint8_t integer_size, uint64_t num_integers, void *buf); 222 uint8_t integer_size, uint64_t num_integers, const void *buf); 235 uint8_t integer_size, uint64_t num_integers, const void *buf,
|
| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | zap_micro.c | 1128 uint64_t integer_size, uint64_t num_integers, void *buf) in zap_lookup() argument 1131 num_integers, buf, 0, NULL, 0, NULL)); in zap_lookup() 1136 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_impl() argument 1147 err = fzap_lookup(zn, integer_size, num_integers, buf, in zap_lookup_impl() 1155 if (num_integers < 1) { in zap_lookup_impl() 1179 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_norm() argument 1190 num_integers, buf, mt, realname, rn_len, ncp); in zap_lookup_norm() 1234 uint64_t integer_size, uint64_t num_integers, void *buf) in zap_lookup_by_dnode() argument 1237 num_integers, buf, 0, NULL, 0, NULL)); in zap_lookup_by_dnode() 1242 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_norm_by_dnode() argument [all …]
|
| H A D | zap_leaf.c | 214 int integer_size, int num_integers) in zap_leaf_array_create() argument 221 int len = num_integers; in zap_leaf_array_create() 223 ASSERT3U(num_integers * integer_size, <=, ZAP_MAXVALUELEN); in zap_leaf_array_create() 510 uint8_t integer_size, uint64_t num_integers, void *buf) in zap_entry_read() argument 521 integer_size, num_integers, buf); in zap_entry_read() 523 if (zeh->zeh_num_integers > num_integers) in zap_entry_read() 551 uint8_t integer_size, uint64_t num_integers, const void *buf) in zap_entry_update() argument 556 int delta_chunks = ZAP_LEAF_ARRAY_NCHUNKS(num_integers * integer_size) - in zap_entry_update() 564 zap_leaf_array_create(l, buf, integer_size, num_integers); in zap_entry_update() 565 le->le_value_numints = num_integers; in zap_entry_update() [all …]
|
| H A D | zap.c | 847 fzap_checksize(uint64_t integer_size, uint64_t num_integers) in fzap_checksize() argument 860 if (integer_size * num_integers > ZAP_MAXVALUELEN) in fzap_checksize() 867 fzap_check(zap_name_t *zn, uint64_t integer_size, uint64_t num_integers) in fzap_check() argument 872 return (fzap_checksize(integer_size, num_integers)); in fzap_check() 880 uint64_t integer_size, uint64_t num_integers, void *buf, in fzap_lookup() argument 896 if ((err = fzap_checksize(integer_size, num_integers)) != 0) { in fzap_lookup() 901 err = zap_entry_read(&zeh, integer_size, num_integers, buf); in fzap_lookup() 917 uint64_t integer_size, uint64_t num_integers, in fzap_add_cd() argument 927 ASSERT0(fzap_check(zn, integer_size, num_integers)); in fzap_add_cd() 942 integer_size, num_integers, val, &zeh); in fzap_add_cd() [all …]
|
| H A D | vdev.c | 6318 uint64_t integer_size, num_integers; in vdev_prop_get() local 6688 &integer_size, &num_integers); in vdev_prop_get() 6699 strval = kmem_alloc(num_integers, in vdev_prop_get() 6703 num_integers, strval); in vdev_prop_get() 6706 num_integers); in vdev_prop_get() 6711 kmem_free(strval, num_integers); in vdev_prop_get()
|
| /freebsd/stand/libsa/zfs/ |
| H A D | zfsimpl.c | 150 const char *name, uint64_t integer_size, uint64_t num_integers, 2635 uint64_t integer_size, uint64_t num_integers, void *buf) in fzap_leaf_array() argument 2641 int len = MIN(zc->l_entry.le_value_numints, num_integers); in fzap_leaf_array() 2672 fzap_check_size(uint64_t integer_size, uint64_t num_integers) in fzap_check_size() argument 2685 if (integer_size * num_integers > ZAP_MAXVALUELEN) in fzap_check_size() 2779 uint64_t integer_size, uint64_t num_integers, void *value) in zap_leaf_lookup() argument 2808 num_integers, value); in zap_leaf_lookup() 2822 const char *name, uint64_t integer_size, uint64_t num_integers, in fzap_lookup() argument 2834 if ((rc = fzap_check_size(integer_size, num_integers)) != 0) { in fzap_lookup() 2848 rc = zap_leaf_lookup(zl, hash, name, integer_size, num_integers, value); in fzap_lookup() [all …]
|