Searched refs:strm (Results 1 – 2 of 2) sorted by relevance
38 lzma_stream strm = LZMA_STREAM_INIT; in lzma_decompress_stream_to_file() local51 strm.next_in = NULL; in lzma_decompress_stream_to_file()52 strm.avail_in = 0; in lzma_decompress_stream_to_file()53 strm.next_out = buf_out; in lzma_decompress_stream_to_file()54 strm.avail_out = sizeof(buf_out); in lzma_decompress_stream_to_file()57 if (strm.avail_in == 0 && !feof(infile)) { in lzma_decompress_stream_to_file()58 strm.next_in = buf_in; in lzma_decompress_stream_to_file()70 ret = lzma_code(&strm, action); in lzma_decompress_stream_to_file()80 strm.next_out = buf_out; in lzma_decompress_stream_to_file()81 strm.avail_out = sizeof(buf_out); in lzma_decompress_stream_to_file()[all …]
6 lzma_stream strm = LZMA_STREAM_INIT; in main() local9 ret = lzma_stream_decoder(&strm, UINT64_MAX, LZMA_CONCATENATED); in main()
Completed in 4 milliseconds