Lines Matching refs:dctx
171 LZ4F_dctx* dctx, in decompress_file_internal() argument
179 assert(dctx != NULL); in decompress_file_internal()
202 … ret = LZ4F_decompress(dctx, dst, &dstSize, srcPtr, &srcSize, /* LZ4F_decompressOptions_t */ NULL); in decompress_file_internal()
242 LZ4F_dctx* dctx, in decompress_file_allocDst() argument
246 assert(dctx != NULL); in decompress_file_allocDst()
259 { size_t const fires = LZ4F_getFrameInfo(dctx, &info, src, &consumedSize); in decompress_file_allocDst()
274 dctx, in decompress_file_allocDst()
292 LZ4F_dctx* dctx; in decompress_file() local
293 { size_t const dctxStatus = LZ4F_createDecompressionContext(&dctx, LZ4F_VERSION); in decompress_file()
298 int const result = !dctx ? 1 /* error */ : in decompress_file()
299 decompress_file_allocDst(f_in, f_out, dctx, src, IN_CHUNK_SIZE); in decompress_file()
302 LZ4F_freeDecompressionContext(dctx); /* note : free works on NULL */ in decompress_file()