Home
last modified time | relevance | path

Searched refs:zd (Results 1 – 17 of 17) sorted by relevance

/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-zone.c168 zone_dataset_t *zd; in zone_dataset_lookup() local
170 list_for_each_entry(zd, &zds->zds_datasets, zd_list) { in zone_dataset_lookup()
171 if (zd->zd_dsnamelen != dsnamelen) in zone_dataset_lookup()
173 if (strncmp(zd->zd_dsname, dataset, dsnamelen) == 0) in zone_dataset_lookup()
174 return (zd); in zone_dataset_lookup()
212 zone_dataset_t *zd; in zone_dataset_attach() local
237 zd = zone_dataset_lookup(zds, dataset, dsnamelen); in zone_dataset_attach()
238 if (zd != NULL) { in zone_dataset_attach()
244 zd = kmem_alloc(sizeof (zone_dataset_t) + dsnamelen + 1, KM_SLEEP); in zone_dataset_attach()
245 zd->zd_dsnamelen = dsnamelen; in zone_dataset_attach()
[all …]
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_zone.c63 zone_dataset_t *zd, *zd2; in zone_dataset_attach() local
71 zd = malloc(sizeof (*zd) + strlen(dataset) + 1, M_ZONES, M_WAITOK); in zone_dataset_attach()
77 free(zd, M_ZONES); in zone_dataset_attach()
86 free(zd, M_ZONES); in zone_dataset_attach()
102 strcpy(zd->zd_dataset, dataset); in zone_dataset_attach()
103 LIST_INSERT_HEAD(head, zd, zd_next); in zone_dataset_attach()
116 zone_dataset_t *zd; in zone_dataset_detach() local
133 LIST_FOREACH(zd, head, zd_next) { in zone_dataset_detach()
134 if (strcmp(dataset, zd->zd_dataset) == 0) in zone_dataset_detach()
137 if (zd == NULL) in zone_dataset_detach()
[all …]
/freebsd/sys/contrib/openzfs/cmd/
H A Dztest.c394 typedef void ztest_func_t(ztest_ds_t *zd, uint64_t id);
1731 ztest_object_lock(ztest_ds_t *zd, uint64_t object, rl_type_t type) in ztest_object_lock() argument
1733 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)]; in ztest_object_lock()
1739 ztest_object_unlock(ztest_ds_t *zd, uint64_t object) in ztest_object_unlock() argument
1741 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)]; in ztest_object_unlock()
1747 ztest_range_lock(ztest_ds_t *zd, uint64_t object, uint64_t offset, in ztest_range_lock() argument
1751 rll_t *rll = &zd->zd_range_lock[hash & (ZTEST_RANGE_LOCKS - 1)]; in ztest_range_lock()
1776 ztest_zd_init(ztest_ds_t *zd, ztest_shared_ds_t *szd, objset_t *os) in ztest_zd_init() argument
1778 zd->zd_os = os; in ztest_zd_init()
1779 zd->zd_zilog = dmu_objset_zil(os); in ztest_zd_init()
[all …]
/freebsd/contrib/ldns/
H A Ddnssec_zone.c1549 INLINE bool zone_digester_set(zone_digester *zd) argument
1550 { return zd && (zd->simple_sha384 || zd->simple_sha512); }
1552 INLINE void zone_digester_init(zone_digester *zd) argument
1553 { memset(zd, 0, sizeof(*zd)); }
1556 zone_digester_add(zone_digester *zd, zonemd_scheme scheme, zonemd_hash hash) argument
1558 if (!zd)
1565 if (zd->double_sha384)
1568 else if (zd->simple_sha384) {
1569 zd->simple_sha384 = 0;
1570 zd->double_sha384 = 1;
[all …]
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_legacy.h163 ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx(); in ZSTD_decompressLegacy() local
164 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
165 … result = ZSTDv05_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
166 ZSTDv05_freeDCtx(zd); in ZSTD_decompressLegacy()
173 ZSTDv06_DCtx* const zd = ZSTDv06_createDCtx(); in ZSTD_decompressLegacy() local
174 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
175 … result = ZSTDv06_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
176 ZSTDv06_freeDCtx(zd); in ZSTD_decompressLegacy()
183 ZSTDv07_DCtx* const zd = ZSTDv07_createDCtx(); in ZSTD_decompressLegacy() local
184 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
[all …]
H A Dzstd_v06.c3900 ZSTDv06_DCtx* zd; member
3921 zbd->zd = ZSTDv06_createDCtx(); in ZBUFFv06_createDCtx()
3922 if (zbd->zd==NULL) { in ZBUFFv06_createDCtx()
3933 ZSTDv06_freeDCtx(zbd->zd); in ZBUFFv06_freeDCtx()
3947 return ZSTDv06_decompressBegin_usingDict(zbd->zd, dict, dictSize); in ZBUFFv06_decompressInitDictionary()
4004 …{ size_t const h1Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); /* == ZSTDv06_frameHeaderSize… in ZBUFFv06_decompressContinue()
4005 … size_t const h1Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size); in ZBUFFv06_decompressContinue()
4008 size_t const h2Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
4009 …size_t const h2Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer+h1Size, h2S… in ZBUFFv06_decompressContinue()
4032 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
[all …]
H A Dzstd_v07.c4262 ZSTDv07_DCtx* zd; member
4299 zbd->zd = ZSTDv07_createDCtx_advanced(customMem); in ZBUFFv07_createDCtx_advanced()
4300 if (zbd->zd == NULL) { ZBUFFv07_freeDCtx(zbd); return NULL; } in ZBUFFv07_createDCtx_advanced()
4308 ZSTDv07_freeDCtx(zbd->zd); in ZBUFFv07_freeDCtx()
4322 return ZSTDv07_decompressBegin_usingDict(zbd->zd, dict, dictSize); in ZBUFFv07_decompressInitDictionary()
4379 …{ size_t const h1Size = ZSTDv07_nextSrcSizeToDecompress(zbd->zd); /* == ZSTDv07_frameHeaderSize… in ZBUFFv07_decompressContinue()
4380 … size_t const h1Result = ZSTDv07_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size); in ZBUFFv07_decompressContinue()
4383 size_t const h2Size = ZSTDv07_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv07_decompressContinue()
4384 …size_t const h2Result = ZSTDv07_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer+h1Size, h2S… in ZBUFFv07_decompressContinue()
4410 { size_t const neededInSize = ZSTDv07_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv07_decompressContinue()
[all …]
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Datomic.h95 JEMALLOC_GENERATE_EXPANDED_INT_ATOMICS(ssize_t, zd, LG_SIZEOF_PTR)
/freebsd/sys/contrib/openzfs/udev/rules.d/
H A D60-zvol.rules.in11 KERNEL=="zd*", SUBSYSTEM=="block", ACTION=="add|change", PROGRAM=="@udevdir@/zvol_id $devnode", SYM…
/freebsd/contrib/tzdata/
H A DMakefile860 ZDS = dummy.zd
1434 .PHONY: clean clean_misc commit-leap-seconds.list dummy.zd
/freebsd/contrib/tzcode/
H A DMakefile860 ZDS = dummy.zd
1434 .PHONY: clean clean_misc commit-leap-seconds.list dummy.zd
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_zip.c2119 unsigned char *z = zip64, *zd; in archive_write_zip_finish_entry() local
2138 zd = cd_alloc(zip, z - zip64); in archive_write_zip_finish_entry()
2139 if (zd == NULL) { in archive_write_zip_finish_entry()
2144 memcpy(zd, zip64, z - zip64); in archive_write_zip_finish_entry()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSVEInstrFormats.td5476 def : Pat<(nxv8f16 (vselect nxv8i1:$pg, (splat_vector fpimm16:$imm8), nxv8f16:$zd)),
5477 (!cast<Instruction>(NAME # _H) $zd, $pg, fpimm16:$imm8)>;
5478 def : Pat<(nxv4f16 (vselect nxv4i1:$pg, (splat_vector fpimm16:$imm8), nxv4f16:$zd)),
5479 (!cast<Instruction>(NAME # _H) $zd, $pg, fpimm16:$imm8)>;
5480 def : Pat<(nxv2f16 (vselect nxv2i1:$pg, (splat_vector fpimm16:$imm8), nxv2f16:$zd)),
5481 (!cast<Instruction>(NAME # _H) $zd, $pg, fpimm16:$imm8)>;
5482 def : Pat<(nxv4f32 (vselect nxv4i1:$pg, (splat_vector fpimm32:$imm8), nxv4f32:$zd)),
5483 (!cast<Instruction>(NAME # _S) $zd, $pg, fpimm32:$imm8)>;
5484 def : Pat<(nxv2f32 (vselect nxv2i1:$pg, (splat_vector fpimm32:$imm8), nxv2f32:$zd)),
5485 (!cast<Instruction>(NAME # _S) $zd, $pg, fpimm32:$imm8)>;
[all …]
/freebsd/contrib/tcpdump/
H A Dconfigure.ac503 snprintf(buf, sizeof(buf), "%zd", (ssize_t)(-i));
H A DCMakeLists.txt574 snprintf(buf, sizeof(buf), \"%zd\", (ssize_t)(-i));
/freebsd/contrib/sendmail/
H A DPGPKEYS1895 YC8/MG42Oj/zd+0WUhnI+RckFYPBNDQ+sZC6ErLDxCYDZMYhG4vhJOGqAKpglNTb
/freebsd/share/termcap/
H A Dtermcap1016 :zd=\E[1m:zb=\E[5m:zc=lkmjqxtuwvn:\