Lines Matching refs:zd
163 ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx();
164 if (zd==NULL) return ERROR(memory_allocation);
165 result = ZSTDv05_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize);
166 ZSTDv05_freeDCtx(zd);
173 ZSTDv06_DCtx* const zd = ZSTDv06_createDCtx();
174 if (zd==NULL) return ERROR(memory_allocation);
175 result = ZSTDv06_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize);
176 ZSTDv06_freeDCtx(zd);
183 ZSTDv07_DCtx* const zd = ZSTDv07_createDCtx();
184 if (zd==NULL) return ERROR(memory_allocation);
185 result = ZSTDv07_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize);
186 ZSTDv07_freeDCtx(zd);