| /freebsd-12.1/sys/cddl/compat/opensolaris/kern/ |
| H A D | opensolaris_zone.c | 62 zone_dataset_t *zd, *zd2; in zone_dataset_attach() local 70 zd = malloc(sizeof(*zd) + strlen(dataset) + 1, M_ZONES, M_WAITOK); in zone_dataset_attach() 76 free(zd, M_ZONES); in zone_dataset_attach() 85 free(zd, M_ZONES); in zone_dataset_attach() 114 zone_dataset_t *zd; in zone_dataset_detach() local 135 if (zd == NULL) in zone_dataset_detach() 138 LIST_REMOVE(zd, zd_next); in zone_dataset_detach() 139 free(zd, M_ZONES); in zone_dataset_detach() 157 zone_dataset_t *zd; in zone_dataset_visible() local 181 len = strlen(zd->zd_dataset); in zone_dataset_visible() [all …]
|
| /freebsd-12.1/cddl/contrib/opensolaris/cmd/ztest/ |
| H A D | ztest.c | 1239 zd->zd_os = os; in ztest_zd_init() 1241 zd->zd_shared = szd; in ztest_zd_init() 1477 itx->itx_private = zd; in ztest_log_write() 1525 ztest_ds_t *zd = arg1; in ztest_replay_create() local 1615 ztest_ds_t *zd = arg1; in ztest_replay_remove() local 1668 ztest_ds_t *zd = arg1; in ztest_replay_write() local 1956 ztest_ds_t *zd = arg; in ztest_get_data() local 2404 zd->zd_od = od; in ztest_object_init() 6023 zd->zd_name, in ztest_dataset_open() 6044 dmu_objset_disown(zd->zd_os, zd); in ztest_dataset_close() [all …]
|
| /freebsd-12.1/sys/contrib/zstd/lib/legacy/ |
| H A D | zstd_legacy.h | 149 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 D | zstd_v07.c | 4277 ZSTDv07_DCtx* zd; member 4314 zbd->zd = ZSTDv07_createDCtx_advanced(customMem); in ZBUFFv07_createDCtx_advanced() 4315 if (zbd->zd == NULL) { ZBUFFv07_freeDCtx(zbd); return NULL; } in ZBUFFv07_createDCtx_advanced() 4323 ZSTDv07_freeDCtx(zbd->zd); in ZBUFFv07_freeDCtx() 4337 return ZSTDv07_decompressBegin_usingDict(zbd->zd, dict, dictSize); in ZBUFFv07_decompressInitDictionary() 4395 size_t const h2Size = ZSTDv07_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv07_decompressContinue() 4429 const int isSkipFrame = ZSTDv07_isSkipFrame(zbd->zd); in ZBUFFv07_decompressContinue() 4430 size_t const decodedSize = ZSTDv07_decompressContinue(zbd->zd, in ZBUFFv07_decompressContinue() 4455 { const int isSkipFrame = ZSTDv07_isSkipFrame(zbd->zd); in ZBUFFv07_decompressContinue() 4456 size_t const decodedSize = ZSTDv07_decompressContinue(zbd->zd, in ZBUFFv07_decompressContinue() [all …]
|
| H A D | zstd_v06.c | 3921 ZSTDv06_DCtx* zd; member 3942 zbd->zd = ZSTDv06_createDCtx(); in ZBUFFv06_createDCtx() 3950 ZSTDv06_freeDCtx(zbd->zd); in ZBUFFv06_freeDCtx() 3964 return ZSTDv06_decompressBegin_usingDict(zbd->zd, dict, dictSize); in ZBUFFv06_decompressInitDictionary() 4019 … size_t const h1Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size); in ZBUFFv06_decompressContinue() 4022 size_t const h2Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue() 4046 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue() 4053 size_t const decodedSize = ZSTDv06_decompressContinue(zbd->zd, in ZBUFFv06_decompressContinue() 4068 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue() 4078 { size_t const decodedSize = ZSTDv06_decompressContinue(zbd->zd, in ZBUFFv06_decompressContinue() [all …]
|
| /freebsd-12.1/sys/contrib/zstd/tests/ |
| H A D | zbufftest.c | 132 ZBUFF_DCtx* zd = ZBUFF_createDCtx_advanced(customMem); in basicUnitTests() local 163 ZBUFF_decompressInitDictionary(zd, CNBuffer, 128 KB); in basicUnitTests() 173 ZBUFF_decompressInitDictionary(zd, CNBuffer, 128 KB); in basicUnitTests() 221 ZBUFF_freeDCtx(zd); in basicUnitTests() 276 ZBUFF_DCtx* zd; in fuzzerTests() local 281 zd = ZBUFF_createDCtx(); in fuzzerTests() 291 !copyBuffer || !dstBuffer || !cBuffer || !zc || !zd, in fuzzerTests() 327 if ((FUZ_rand(&lseed) & 0xFF) == 132) { ZBUFF_freeDCtx(zd); zd = ZBUFF_createDCtx(); } in fuzzerTests() 402 ZBUFF_decompressInitDictionary(zd, dict, dictSize); in fuzzerTests() 433 ZBUFF_decompressInit(zd); in fuzzerTests() [all …]
|
| H A D | zstreamtest.c | 841 ZSTD_resetDStream(zd); in basicUnitTests() 907 ZSTD_freeDStream(zd); in basicUnitTests() 1043 ZSTD_freeDStream(zd); in fuzzerTests() 1044 zd = ZSTD_createDStream(); in fuzzerTests() 1201 ZSTD_freeDStream(zd); in fuzzerTests() 1296 ZSTD_freeDStream(zd); in fuzzerTests_MT() 1297 zd = ZSTD_createDStream(); in fuzzerTests_MT() 1473 ZSTD_freeDStream(zd); in fuzzerTests_MT() 1581 ZSTD_freeDStream(zd); in fuzzerTests_newAPI() 1582 zd = ZSTD_createDStream(); in fuzzerTests_newAPI() [all …]
|
| H A D | decodecorpus.c | 1343 ZSTD_DStream* zd = ZSTD_createDStream(); in testDecodeStreaming() local 1348 if (!zd) return ERROR(memory_allocation); in testDecodeStreaming() 1358 ZSTD_initDStream(zd); in testDecodeStreaming() 1360 ret = ZSTD_decompressStream(zd, &out, &in); in testDecodeStreaming() 1375 ZSTD_freeDStream(zd); in testDecodeStreaming()
|
| /freebsd-12.1/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | atomic.h | 67 JEMALLOC_GENERATE_INT_ATOMICS(ssize_t, zd, LG_SIZEOF_PTR)
|
| /freebsd-12.1/contrib/libarchive/libarchive/ |
| H A D | archive_write_set_format_zip.c | 1222 unsigned char *z = zip64, *zd; in archive_write_zip_finish_entry() local 1238 zd = cd_alloc(zip, z - zip64); in archive_write_zip_finish_entry() 1239 if (zd == NULL) { in archive_write_zip_finish_entry() 1244 memcpy(zd, zip64, z - zip64); in archive_write_zip_finish_entry()
|
| /freebsd-12.1/contrib/tzdata/ |
| H A D | Makefile | 693 ZDS = dummy.zd 1119 .PHONY: clean clean_misc dummy.zd force_tzs
|
| /freebsd-12.1/contrib/sendmail/ |
| H A D | PGPKEYS | 154 YC8/MG42Oj/zd+0WUhnI+RckFYPBNDQ+sZC6ErLDxCYDZMYhG4vhJOGqAKpglNTb
|
| /freebsd-12.1/share/termcap/ |
| H A D | termcap | 1019 :zd=\E[1m:zb=\E[5m:zc=lkmjqxtuwvn:\
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | ChangeLog-2000 | 12001 (print_char_table): Use T_SST for %zd, %zi, %zn. Use T_UPD for 12005 %zd, %zi, %zn. Use T_UPD for %to, %tu, %tx, %tX. Add "c" to the
|