Lines Matching refs:dctx
172 LZ4F_dctx* dctx, in decompress_file_internal() argument
180 assert(dctx != NULL); in decompress_file_internal()
203 … ret = LZ4F_decompress(dctx, dst, &dstSize, srcPtr, &srcSize, /* LZ4F_decompressOptions_t */ NULL); in decompress_file_internal()
243 LZ4F_dctx* dctx, in decompress_file_allocDst() argument
247 assert(dctx != NULL); in decompress_file_allocDst()
260 { size_t const fires = LZ4F_getFrameInfo(dctx, &info, src, &consumedSize); in decompress_file_allocDst()
275 dctx, in decompress_file_allocDst()
293 LZ4F_dctx* dctx; in decompress_file() local
294 { size_t const dctxStatus = LZ4F_createDecompressionContext(&dctx, LZ4F_VERSION); in decompress_file()
299 int const result = !dctx ? 1 /* error */ : in decompress_file()
300 decompress_file_allocDst(f_in, f_out, dctx, src, IN_CHUNK_SIZE); in decompress_file()
303 LZ4F_freeDecompressionContext(dctx); /* note : free works on NULL */ in decompress_file()