/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
H A D | ddt.c | 173 ddt_entry_t *dde) in ddt_object_lookup() argument 179 ddt->ddt_object[type][class], dde)); in ddt_object_lookup() 184 ddt_entry_t *dde) in ddt_object_prefetch() argument 190 ddt->ddt_object[type][class], dde); in ddt_object_prefetch() 195 ddt_entry_t *dde, dmu_tx_t *tx) in ddt_object_update() argument 200 ddt->ddt_object[type][class], dde, tx)); in ddt_object_update() 205 ddt_entry_t *dde, dmu_tx_t *tx) in ddt_object_remove() argument 210 ddt->ddt_object[type][class], dde, tx)); in ddt_object_remove() 215 uint64_t *walk, ddt_entry_t *dde) in ddt_object_walk() argument 220 ddt->ddt_object[type][class], dde, walk)); in ddt_object_walk() [all …]
|
H A D | ddt_zap.c | 58 ddt_zap_lookup(objset_t *os, uint64_t object, ddt_entry_t *dde) in ddt_zap_lookup() argument 60 uchar_t cbuf[sizeof (dde->dde_phys) + 1]; in ddt_zap_lookup() 64 error = zap_length_uint64(os, object, (uint64_t *)&dde->dde_key, in ddt_zap_lookup() 72 error = zap_lookup_uint64(os, object, (uint64_t *)&dde->dde_key, in ddt_zap_lookup() 77 ddt_decompress(cbuf, dde->dde_phys, csize, sizeof (dde->dde_phys)); in ddt_zap_lookup() 83 ddt_zap_prefetch(objset_t *os, uint64_t object, ddt_entry_t *dde) in ddt_zap_prefetch() argument 85 (void) zap_prefetch_uint64(os, object, (uint64_t *)&dde->dde_key, in ddt_zap_prefetch() 90 ddt_zap_update(objset_t *os, uint64_t object, ddt_entry_t *dde, dmu_tx_t *tx) in ddt_zap_update() argument 92 uchar_t cbuf[sizeof (dde->dde_phys) + 1]; in ddt_zap_update() 95 csize = ddt_compress(dde->dde_phys, cbuf, in ddt_zap_update() [all …]
|
H A D | zio.c | 2400 ddt_entry_t *dde = zio->io_private; in zio_ddt_child_read_done() local 2405 ddp = ddt_phys_select(dde, bp); in zio_ddt_child_read_done() 2408 if (zio->io_error == 0 && dde->dde_repair_data == NULL) in zio_ddt_child_read_done() 2409 dde->dde_repair_data = zio->io_data; in zio_ddt_child_read_done() 2426 ddt_entry_t *dde = ddt_repair_start(ddt, bp); in zio_ddt_read_start() local 2427 ddt_phys_t *ddp = dde->dde_phys; in zio_ddt_read_start() 2428 ddt_phys_t *ddp_self = ddt_phys_select(dde, bp); in zio_ddt_read_start() 2432 zio->io_vsd = dde; in zio_ddt_read_start() 2440 ddt_bp_create(ddt->ddt_checksum, &dde->dde_key, ddp, in zio_ddt_read_start() 2444 zio_ddt_child_read_done, dde, zio->io_priority, in zio_ddt_read_start() [all …]
|
H A D | dsl_scan.c | 1278 ddt_entry_t dde = { 0 }; in dsl_scan_ddt() local 1282 while ((error = ddt_walk(scn->scn_dp->dp_spa, ddb, &dde)) == 0) { in dsl_scan_ddt() 1297 dsl_scan_ddt_entry(scn, ddb->ddb_checksum, &dde, tx); in dsl_scan_ddt() 1316 ddt_entry_t *dde, dmu_tx_t *tx) in dsl_scan_ddt_entry() argument 1318 const ddt_key_t *ddk = &dde->dde_key; in dsl_scan_ddt_entry() 1319 ddt_phys_t *ddp = dde->dde_phys; in dsl_scan_ddt_entry()
|
/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
H A D | ddt.h | 156 int (*ddt_op_lookup)(objset_t *os, uint64_t object, ddt_entry_t *dde); 158 ddt_entry_t *dde); 159 int (*ddt_op_update)(objset_t *os, uint64_t object, ddt_entry_t *dde, 161 int (*ddt_op_remove)(objset_t *os, uint64_t object, ddt_entry_t *dde, 163 int (*ddt_op_walk)(objset_t *os, uint64_t object, ddt_entry_t *dde, 173 enum ddt_class cls, uint64_t *walk, ddt_entry_t *dde); 194 extern ddt_phys_t *ddt_phys_select(const ddt_entry_t *dde, const blkptr_t *bp); 195 extern uint64_t ddt_phys_total_refcnt(const ddt_entry_t *dde); 209 extern int ddt_ditto_copies_needed(ddt_t *ddt, ddt_entry_t *dde, 211 extern int ddt_ditto_copies_present(ddt_entry_t *dde); [all …]
|
H A D | dsl_scan.h | 134 ddt_entry_t *dde, dmu_tx_t *tx);
|
/netbsd-src/external/cddl/osnet/dist/cmd/zdb/ |
H A D | zdb.c | 893 dump_dde(const ddt_t *ddt, const ddt_entry_t *dde, uint64_t index) in dump_dde() argument 895 const ddt_phys_t *ddp = dde->dde_phys; in dump_dde() 896 const ddt_key_t *ddk = &dde->dde_key; in dump_dde() 938 ddt_entry_t dde; in dump_ddt() local 979 while ((error = ddt_object_walk(ddt, type, class, &walk, &dde)) == 0) in dump_ddt() 980 dump_dde(ddt, &dde, walk); in dump_ddt() 2382 ddt_entry_t *dde; in zdb_count_block() local 2386 dde = ddt_lookup(ddt, bp, B_FALSE); in zdb_count_block() 2388 if (dde == NULL) { in zdb_count_block() 2391 ddt_phys_t *ddp = ddt_phys_select(dde, bp); in zdb_count_block() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/ |
H A D | windows.d | 30 public import core.sys.windows.dde;
|
H A D | dde.d | 10 module core.sys.windows.dde;
|
/netbsd-src/external/cddl/osnet/dist/lib/libzfs/common/ |
H A D | libzfs_sendrecv.c | 141 dedup_entry_t *dde; in ddt_hash_append() local 153 if ((dde = umem_cache_alloc(ddt->ddecache, UMEM_DEFAULT)) in ddt_hash_append() 156 dde->dde_next = NULL; in ddt_hash_append() 157 dde->dde_chksum = *cs; in ddt_hash_append() 158 dde->dde_prop = prop; in ddt_hash_append() 159 dde->dde_ref = *dr; in ddt_hash_append() 160 *ddepp = dde; in ddt_hash_append()
|
/netbsd-src/external/public-domain/sqlite/dist/tea/win/ |
H A D | rules.vc | 569 && [nmakehlp -V ..\library\dde\pkgIndex.tcl "dde " >> versions.vc]
|
/netbsd-src/sys/external/isc/libsodium/dist/ |
H A D | config.guess | 1169 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/apache2/llvm/dist/llvm/cmake/ |
H A D | config.guess | 1167 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/apache2/llvm/autoconf/autoconf/ |
H A D | config.guess | 1145 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/gpl2/gettext/dist/build-aux/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/bsd/ntp/dist/sntp/libevent/build-aux/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/bsd/top/dist/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/mpl/dhcp/dist/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/lgpl3/mpc/dist/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/bsd/am-utils/dist/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/gpl2/texinfo/dist/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/ |
H A D | config.guess | 1244 echo mips-dde-sysv"$UNAME_RELEASE"
|
/netbsd-src/external/gpl3/gcc.old/dist/ |
H A D | config.guess | 1239 echo mips-dde-sysv"$UNAME_RELEASE"
|
/netbsd-src/external/gpl2/gmake/dist/config/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|
/netbsd-src/crypto/external/bsd/netpgp/dist/buildaux/ |
H A D | config.guess | 1206 echo mips-dde-sysv${UNAME_RELEASE}
|