Lines Matching refs:zd
23959 ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx(); in ZSTD_decompressLegacy() local
23960 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
23961 … result = ZSTDv05_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
23962 ZSTDv05_freeDCtx(zd); in ZSTD_decompressLegacy()
23969 ZSTDv06_DCtx* const zd = ZSTDv06_createDCtx(); in ZSTD_decompressLegacy() local
23970 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
23971 … result = ZSTDv06_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
23972 ZSTDv06_freeDCtx(zd); in ZSTD_decompressLegacy()
23979 ZSTDv07_DCtx* const zd = ZSTDv07_createDCtx(); in ZSTD_decompressLegacy() local
23980 if (zd==NULL) return ERROR(memory_allocation); in ZSTD_decompressLegacy()
23981 … result = ZSTDv07_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); in ZSTD_decompressLegacy()
23982 ZSTDv07_freeDCtx(zd); in ZSTD_decompressLegacy()