Home
last modified time | relevance | path

Searched refs:strm (Results 1 – 2 of 2) sorted by relevance

/tools/perf/util/
A Dlzma.c38 lzma_stream strm = LZMA_STREAM_INIT; in lzma_decompress_stream_to_file() local
51 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 …]
/tools/build/feature/
A Dtest-lzma.c6 lzma_stream strm = LZMA_STREAM_INIT; in main() local
9 ret = lzma_stream_decoder(&strm, UINT64_MAX, LZMA_CONCATENATED); in main()

Completed in 4 milliseconds