Searched refs:lzma_index (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.2-release/contrib/xz/src/liblzma/common/
H A Dindex_encoder.h20 lzma_allocator *allocator, const lzma_index *i);
H A Dindex.h28 extern uint32_t lzma_index_padding_size(const lzma_index *i);
34 extern void lzma_index_prealloc(lzma_index *i, lzma_vli records);
H A Dindex_encoder.c30 const lzma_index *index;
170 index_encoder_reset(lzma_coder *coder, const lzma_index *i)
185 const lzma_index *i)
208 lzma_index_encoder(lzma_stream *strm, const lzma_index *i)
220 lzma_index_buffer_encode(const lzma_index *i,
H A Dindex.c157 /// Total number of Records in all Streams in this lzma_index
161 /// lzma_index were packed into a single Stream (makes it simpler to
379 static lzma_index *
382 lzma_index *i = lzma_alloc(sizeof(lzma_index), allocator);
397 extern LZMA_API(lzma_index *)
400 lzma_index *i = index_init_plain(allocator);
417 lzma_index_end(lzma_index *i, lzma_allocator *allocator)
431 lzma_index_prealloc(lzma_index *i, lzma_vli records)
474 const uint64_t index_base = sizeof(lzma_index)
[all...]
H A Dindex_decoder.c33 lzma_index *index;
37 lzma_index **index_ptr;
238 lzma_index **i, uint64_t memlimit)
247 // We always allocate a new lzma_index.
265 lzma_index **i, uint64_t memlimit)
290 lzma_index_decoder(lzma_stream *strm, lzma_index **i, uint64_t memlimit)
303 lzma_index **i, uint64_t *memlimit, lzma_allocator *allocator,
H A Dstream_buffer_encoder.c103 lzma_index *i = lzma_index_init(allocator);
H A Dstream_encoder.c48 lzma_index *index;
/freebsd-10.2-release/contrib/xz/src/liblzma/api/lzma/
H A Dindex.h23 * lzma_index often holds just one .xz Index and possibly the Stream Flags
26 * there may be information about multiple Streams in the same lzma_index.
28 * Notes about thread safety: Only one thread may modify lzma_index at
29 * a time. All functions that take non-const pointer to lzma_index
30 * modify it. As long as no thread is modifying the lzma_index, getting
31 * information from the same lzma_index can be done from multiple threads
33 * lzma_index or use lzma_index_iter. The same iterator must be used
35 * iterators for the same lzma_index as needed.
37 typedef struct lzma_index_s lzma_index; typedef in typeref:struct:lzma_index_s
58 * \brief Stream number in the lzma_index
[all...]
/freebsd-10.2-release/contrib/xz/src/xz/
H A Dlist.c20 lzma_index *idx;
145 lzma_index *combined_index = NULL;
148 lzma_index *this_index = NULL;

Completed in 103 milliseconds