| /illumos-gate/usr/src/uts/common/fs/zfs/sys/ |
| H A D | zap.h | 204 uint64_t integer_size, uint64_t num_integers, void *buf); 215 uint64_t integer_size, uint64_t num_integers, void *buf, 219 int key_numints, uint64_t integer_size, uint64_t num_integers, void *buf); 224 uint64_t integer_size, uint64_t num_integers, void *buf); 226 uint64_t integer_size, uint64_t num_integers, void *buf, 240 int integer_size, uint64_t num_integers, 243 int integer_size, uint64_t num_integers, 246 int key_numints, int integer_size, uint64_t num_integers, 258 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx); 261 int integer_size, uint64_t num_integers, const void *val, dmu_tx_t *tx); [all …]
|
| H A D | zap_impl.h | 217 uint64_t integer_size, uint64_t num_integers, void *buf, 220 int fzap_add(zap_name_t *zn, uint64_t integer_size, uint64_t num_integers, 223 int integer_size, uint64_t num_integers, const void *val, 226 uint64_t *integer_size, uint64_t *num_integers); 233 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,
|
| /illumos-gate/usr/src/uts/common/fs/zfs/ |
| H A D | zap_micro.c | 884 uint64_t integer_size, uint64_t num_integers, void *buf) in zap_lookup() argument 887 num_integers, buf, 0, NULL, 0, NULL)); in zap_lookup() 892 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_impl() argument 903 err = fzap_lookup(zn, integer_size, num_integers, buf, in zap_lookup_impl() 910 if (num_integers < 1) { in zap_lookup_impl() 932 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_norm() argument 943 num_integers, buf, mt, realname, rn_len, ncp); in zap_lookup_norm() 950 uint64_t integer_size, uint64_t num_integers, void *buf) in zap_lookup_by_dnode() argument 953 num_integers, buf, 0, NULL, 0, NULL)); in zap_lookup_by_dnode() 958 uint64_t integer_size, uint64_t num_integers, void *buf, in zap_lookup_norm_by_dnode() argument [all …]
|
| H A D | zap_leaf.c | 224 int integer_size, int num_integers) in zap_leaf_array_create() argument 231 int len = num_integers; in zap_leaf_array_create() 233 ASSERT3U(num_integers * integer_size, <, MAX_ARRAY_BYTES); in zap_leaf_array_create() 475 uint8_t integer_size, uint64_t num_integers, void *buf) in zap_entry_read() argument 486 integer_size, num_integers, buf); in zap_entry_read() 488 if (zeh->zeh_num_integers > num_integers) in zap_entry_read() 516 uint8_t integer_size, uint64_t num_integers, const void *buf) in zap_entry_update() argument 521 int delta_chunks = ZAP_LEAF_ARRAY_NCHUNKS(num_integers * integer_size) - in zap_entry_update() 529 zap_leaf_array_create(l, buf, integer_size, num_integers); in zap_entry_update() 530 le->le_value_numints = num_integers; in zap_entry_update() [all …]
|
| H A D | zap.c | 748 fzap_checksize(uint64_t integer_size, uint64_t num_integers) in fzap_checksize() argument 761 if (integer_size * num_integers > ZAP_MAXVALUELEN) in fzap_checksize() 768 fzap_check(zap_name_t *zn, uint64_t integer_size, uint64_t num_integers) in fzap_check() argument 773 return (fzap_checksize(integer_size, num_integers)); in fzap_check() 781 uint64_t integer_size, uint64_t num_integers, void *buf, in fzap_lookup() argument 796 if ((err = fzap_checksize(integer_size, num_integers)) != 0) { in fzap_lookup() 801 err = zap_entry_read(&zeh, integer_size, num_integers, buf); in fzap_lookup() 815 uint64_t integer_size, uint64_t num_integers, in fzap_add_cd() argument 825 ASSERT(fzap_check(zn, integer_size, num_integers) == 0); in fzap_add_cd() 840 integer_size, num_integers, val, &zeh); in fzap_add_cd() [all …]
|
| /illumos-gate/usr/src/boot/libsa/zfs/ |
| H A D | zfsimpl.c | 147 const char *name, uint64_t integer_size, uint64_t num_integers, 2527 uint64_t integer_size, uint64_t num_integers, void *buf) in fzap_leaf_array() argument 2533 int len = MIN(zc->l_entry.le_value_numints, num_integers); in fzap_leaf_array() 2564 fzap_check_size(uint64_t integer_size, uint64_t num_integers) in fzap_check_size() argument 2577 if (integer_size * num_integers > ZAP_MAXVALUELEN) in fzap_check_size() 2671 uint64_t integer_size, uint64_t num_integers, void *value) in zap_leaf_lookup() argument 2700 num_integers, value); in zap_leaf_lookup() 2714 const char *name, uint64_t integer_size, uint64_t num_integers, in fzap_lookup() argument 2726 if ((rc = fzap_check_size(integer_size, num_integers)) != 0) in fzap_lookup() 2739 rc = zap_leaf_lookup(zl, hash, name, integer_size, num_integers, value); in fzap_lookup() [all …]
|