Lines Matching refs:zd
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()
171 … result = ZSTDv07_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
172 ZSTDv07_freeDCtx(zd); in ZSTD_decompressLegacy()