/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
H A D | zap.h | 200 uint64_t integer_size, uint64_t num_integers, void *buf); 211 uint64_t integer_size, uint64_t num_integers, void *buf, 215 int key_numints, uint64_t integer_size, uint64_t num_integers, void *buf); 220 uint64_t integer_size, uint64_t num_integers, void *buf); 222 uint64_t integer_size, uint64_t num_integers, void *buf, 236 int integer_size, uint64_t num_integers, 239 int key_numints, int integer_size, uint64_t num_integers, 251 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx); 254 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx); 264 uint64_t *integer_size, uint64_t *num_integers); [all …]
|
H A D | zap_impl.h | 214 uint64_t integer_size, uint64_t num_integers, void *buf, 219 int fzap_add(zap_name_t *zn, uint64_t integer_size, uint64_t num_integers, 222 int integer_size, uint64_t num_integers, const void *val, 225 uint64_t *integer_size, uint64_t *num_integers); 232 uint64_t integer_size, uint64_t num_integers,
|
H A D | zap_leaf.h | 203 uint8_t integer_size, uint64_t num_integers, void *buf); 214 uint8_t integer_size, uint64_t num_integers, const void *buf); 227 uint8_t integer_size, uint64_t num_integers, const void *buf,
|
/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
H A D | zap_micro.c | 829 uint64_t integer_size, uint64_t num_integers, void *buf) in zap_lookup() argument 831 return (zap_lookup_norm(os, zapobj, name, integer_size, in zap_lookup() 837 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_impl() argument 850 err = fzap_lookup(zn, integer_size, num_integers, buf, in zap_lookup_impl() 859 } else if (integer_size != 8) { in zap_lookup_impl() 880 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_norm() argument 890 err = zap_lookup_impl(zap, name, integer_size, in zap_lookup_norm() 898 uint64_t integer_size, uint64_t num_integers, void *buf) in zap_lookup_by_dnode() argument 900 return (zap_lookup_norm_by_dnode(dn, name, integer_size, in zap_lookup_by_dnode() 906 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_norm_by_dnode() argument [all …]
|
H A D | zap_leaf.c | 227 int integer_size, int num_integers) in zap_leaf_array_create() argument 233 int shift = (integer_size-1)*8; in zap_leaf_array_create() 236 ASSERT3U(num_integers * integer_size, <, MAX_ARRAY_BYTES); in zap_leaf_array_create() 246 value = ldv(integer_size, buf); in zap_leaf_array_create() 249 if (++byten == integer_size) { in zap_leaf_array_create() 251 buf += integer_size; in zap_leaf_array_create() 497 uint8_t integer_size, uint64_t num_integers, void *buf) in zap_entry_read() argument 503 if (le->le_value_intlen > integer_size) in zap_entry_read() 508 integer_size, num_integers, buf); in zap_entry_read() 538 uint8_t integer_size, uint64_t num_integers, const void *buf) in zap_entry_update() argument [all …]
|
H A D | zap.c | 744 fzap_checksize(uint64_t integer_size, uint64_t num_integers) in fzap_checksize() argument 747 switch (integer_size) { in fzap_checksize() 757 if (integer_size * num_integers > ZAP_MAXVALUELEN) in fzap_checksize() 764 fzap_check(zap_name_t *zn, uint64_t integer_size, uint64_t num_integers) in fzap_check() argument 770 return (fzap_checksize(integer_size, num_integers)); in fzap_check() 778 uint64_t integer_size, uint64_t num_integers, void *buf, in fzap_lookup() argument 793 if ((err = fzap_checksize(integer_size, num_integers)) != 0) { in fzap_lookup() 798 err = zap_entry_read(&zeh, integer_size, num_integers, buf); in fzap_lookup() 812 uint64_t integer_size, uint64_t num_integers, in fzap_add_cd() argument 822 ASSERT(fzap_check(zn, integer_size, num_integers) == 0); in fzap_add_cd() [all …]
|