Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-zone.c130 zone_dataset_t *zd; in zone_dataset_lookup() local
136 return (zd); in zone_dataset_lookup()
174 zone_dataset_t *zd; in zone_dataset_attach() local
200 if (zd != NULL) { in zone_dataset_attach()
226 zone_dataset_t *zd; in zone_dataset_detach() local
246 list_del(&zd->zd_list); in zone_dataset_detach()
247 kmem_free(zd, sizeof (*zd) + zd->zd_dsnamelen + 1); in zone_dataset_detach()
286 zone_dataset_t *zd; in zone_dataset_visible() local
404 zone_dataset_t *zd; in spl_zone_fini() local
417 list_del(&zd->zd_list); in spl_zone_fini()
[all …]
/freebsd-14.2/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_zone.c65 zone_dataset_t *zd, *zd2; in zone_dataset_attach() local
73 zd = malloc(sizeof (*zd) + strlen(dataset) + 1, M_ZONES, M_WAITOK); in zone_dataset_attach()
79 free(zd, M_ZONES); in zone_dataset_attach()
88 free(zd, M_ZONES); in zone_dataset_attach()
118 zone_dataset_t *zd; in zone_dataset_detach() local
139 if (zd == NULL) in zone_dataset_detach()
142 LIST_REMOVE(zd, zd_next); in zone_dataset_detach()
143 free(zd, M_ZONES); in zone_dataset_detach()
161 zone_dataset_t *zd; in zone_dataset_visible() local
226 zone_dataset_t *zd; in zone_destroy() local
[all …]
/freebsd-14.2/sys/contrib/openzfs/cmd/
H A Dztest.c1699 zd->zd_os = os; in ztest_zd_init()
1701 zd->zd_shared = szd; in ztest_zd_init()
2402 ztest_ds_t *zd = arg; in ztest_get_data() local
2855 zd->zd_od = od; in ztest_object_init()
2930 (void) zd, (void) id; in ztest_spa_create_destroy()
2993 (void) zd, (void) id; in ztest_mmp_enable_disable()
4328 (void) zd; in ztest_dmu_objset_create_destroy()
4642 zd->zd_od = NULL; in ztest_dmu_object_alloc_free()
7337 zd->zd_name, in ztest_dataset_open()
7359 dmu_objset_disown(zd->zd_os, B_TRUE, zd); in ztest_dataset_close()
[all …]
/freebsd-14.2/contrib/ldns/
H A Ddnssec_zone.c1550 { return zd && (zd->simple_sha384 || zd->simple_sha512); }
1553 { memset(zd, 0, sizeof(*zd)); }
1558 if (!zd)
1616 if (zd->simple_sha384)
1619 if (zd->simple_sha512)
1681 if (!zd || !soa)
1705 if (zd->simple_sha384)
1763 zone_digester zd; local
1837 if (zd.simple_sha384)
1839 if (zd.simple_sha512)
[all …]
/freebsd-14.2/sys/contrib/zstd/lib/legacy/
H A Dzstd_legacy.h149 ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx(); in ZSTD_decompressLegacy() local
150 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
151 … result = ZSTDv05_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
152 ZSTDv05_freeDCtx(zd); in ZSTD_decompressLegacy()
159 ZSTDv06_DCtx* const zd = ZSTDv06_createDCtx(); in ZSTD_decompressLegacy() local
160 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
161 … result = ZSTDv06_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
162 ZSTDv06_freeDCtx(zd); in ZSTD_decompressLegacy()
169 ZSTDv07_DCtx* const zd = ZSTDv07_createDCtx(); in ZSTD_decompressLegacy() local
170 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
[all …]
H A Dzstd_v07.c4314 ZSTDv07_DCtx* zd; member
4351 zbd->zd = ZSTDv07_createDCtx_advanced(customMem); in ZBUFFv07_createDCtx_advanced()
4352 if (zbd->zd == NULL) { ZBUFFv07_freeDCtx(zbd); return NULL; } in ZBUFFv07_createDCtx_advanced()
4360 ZSTDv07_freeDCtx(zbd->zd); in ZBUFFv07_freeDCtx()
4374 return ZSTDv07_decompressBegin_usingDict(zbd->zd, dict, dictSize); in ZBUFFv07_decompressInitDictionary()
4434 size_t const h2Size = ZSTDv07_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv07_decompressContinue()
4468 const int isSkipFrame = ZSTDv07_isSkipFrame(zbd->zd); in ZBUFFv07_decompressContinue()
4469 size_t const decodedSize = ZSTDv07_decompressContinue(zbd->zd, in ZBUFFv07_decompressContinue()
4494 { const int isSkipFrame = ZSTDv07_isSkipFrame(zbd->zd); in ZBUFFv07_decompressContinue()
4495 size_t const decodedSize = ZSTDv07_decompressContinue(zbd->zd, in ZBUFFv07_decompressContinue()
[all …]
H A Dzstd_v06.c3949 ZSTDv06_DCtx* zd; member
3970 zbd->zd = ZSTDv06_createDCtx(); in ZBUFFv06_createDCtx()
3978 ZSTDv06_freeDCtx(zbd->zd); in ZBUFFv06_freeDCtx()
3992 return ZSTDv06_decompressBegin_usingDict(zbd->zd, dict, dictSize); in ZBUFFv06_decompressInitDictionary()
4049 … size_t const h1Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size); in ZBUFFv06_decompressContinue()
4052 size_t const h2Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
4076 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
4083 size_t const decodedSize = ZSTDv06_decompressContinue(zbd->zd, in ZBUFFv06_decompressContinue()
4098 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
4108 { size_t const decodedSize = ZSTDv06_decompressContinue(zbd->zd, in ZBUFFv06_decompressContinue()
[all …]
/freebsd-14.2/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-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Datomic.h74 JEMALLOC_GENERATE_INT_ATOMICS(ssize_t, zd, LG_SIZEOF_PTR)
/freebsd-14.2/contrib/libarchive/libarchive/
H A Darchive_write_set_format_zip.c1266 unsigned char *z = zip64, *zd; in archive_write_zip_finish_entry() local
1285 zd = cd_alloc(zip, z - zip64); in archive_write_zip_finish_entry()
1286 if (zd == NULL) { in archive_write_zip_finish_entry()
1291 memcpy(zd, zip64, z - zip64); in archive_write_zip_finish_entry()
/freebsd-14.2/contrib/tzdata/
H A DMakefile807 ZDS = dummy.zd
1370 .PHONY: clean clean_misc commit-leap-seconds.list dummy.zd
/freebsd-14.2/contrib/tzcode/
H A DMakefile805 ZDS = dummy.zd
1368 .PHONY: clean clean_misc commit-leap-seconds.list dummy.zd
/freebsd-14.2/contrib/tcpdump/
H A Dconfigure.ac486 snprintf(buf, sizeof(buf), "%zd", -sizeof(buf));
H A DCMakeLists.txt526 snprintf(buf, sizeof(buf), \"%zd\", -sizeof(buf));
/freebsd-14.2/contrib/sendmail/
H A DPGPKEYS1895 YC8/MG42Oj/zd+0WUhnI+RckFYPBNDQ+sZC6ErLDxCYDZMYhG4vhJOGqAKpglNTb
/freebsd-14.2/share/termcap/
H A Dtermcap1018 :zd=\E[1m:zb=\E[5m:zc=lkmjqxtuwvn:\