search for: lzma_end

Displaying 5 results from an estimated 5 matches for "lzma_end".

2013 Mar 15
0
[PATCH 4.1] Add DomU xz kernel decompression
...FUNCTION__, *size, (size_t)stream.total_out); + DOMPRINTF("%s: %s decompress OK, 0x%zx -> 0x%zx", + __FUNCTION__, what, *size, (size_t)stream->total_out); *blob = out_buf; - *size = stream.total_out; + *size = stream->total_out; lzma_cleanup: - lzma_end(&stream); + lzma_end(stream); return retval; } +/* 128 Mb is the minimum size (half-way) documented to work for all inputs. */ +#define LZMA_BLOCK_SIZE (128*1024*1024) + +static int xc_try_xz_decode( + struct xc_dom_image *dom, void **blob, size_t *size) +{ + lzma_stream stre...
2018 Nov 21
3
[PATCH nbdkit v2 0/3] Rewrite xz plugin as a filter.
v2: - Fixes a number of bugs in corner cases. - Uses a 1M block size to fetch from the underlying plugin. This improves performance considerably. I also tested this much more thoroughly and can't find any more bugs. Rich.
2017 Apr 20
1
Intel MKL compiling issue
...so: undefined reference to `pcre_jit_stack_alloc' ../../lib/libR.so: undefined reference to `pcre_free_study' ../../lib/libR.so: undefined reference to `lzma_crc64 at XZ_5.0' ../../lib/libR.so: undefined reference to `pcre_assign_jit_stack' ../../lib/libR.so: undefined reference to `lzma_end at XZ_5.0' ../../lib/libR.so: undefined reference to `lzma_raw_encoder at XZ_5.0' ../../lib/libR.so: undefined reference to `pcre_config' ../../lib/libR.so: undefined reference to `pcre_compile' ../../lib/libR.so: undefined reference to `lzma_code at XZ_5.0' collect2: ld returne...
2018 Nov 21
5
[PATCH nbdkit 0/2] Rewrite xz plugin as a filter.
Matt asked if xz should really be a filter rather than a plugin. The answer is yes, of course it should be! That's been something in the todo file for a while. The commit converts the xz plugin code into a filter (leaving the plugin around, but deprecating it). plugin: nbdkit xz file.xz filter: nbdkit --filter=xz file file.xz plugin: # can't be done filter: nbdkit
2017 Apr 20
2
Intel MKL compiling issue
Dear R-developers, I would appreciate any insights over compiling R 3.4 with Intel MKL -- I have been successful until R 3.3.3 but now it stops complaining about pcre though it worked without Intel MKL as follows, ./configure LDFLAGS=-L/genetics/data/software/lib CFLAGS=-fPIC -I/genetics/data/software/include --enable-R-shlib I have used, export MKL_NUM_THREADS=15 export