Searched refs:index_hash (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/xz/src/liblzma/common/
H A Dindex_hash.c3 /// \file index_hash.c
73 lzma_index_hash_init(lzma_index_hash *index_hash, argument
76 if (index_hash == NULL) {
77 index_hash = lzma_alloc(sizeof(lzma_index_hash), allocator);
78 if (index_hash == NULL)
82 index_hash->sequence = SEQ_BLOCK;
83 index_hash->blocks.blocks_size = 0;
84 index_hash->blocks.uncompressed_size = 0;
85 index_hash->blocks.count = 0;
86 index_hash
105 lzma_index_hash_end(lzma_index_hash *index_hash, const lzma_allocator *allocator) argument
[all...]
H A Dstream_decoder.c41 lzma_index_hash *index_hash; member in struct:lzma_coder_s
90 coder->index_hash = lzma_index_hash_init(coder->index_hash, allocator);
91 if (coder->index_hash == NULL)
262 return_if_error(lzma_index_hash_append(coder->index_hash,
280 const lzma_ret ret = lzma_index_hash_decode(coder->index_hash,
313 if (lzma_index_hash_size(coder->index_hash)
381 lzma_index_hash_end(coder->index_hash, allocator);
436 next->coder->index_hash = NULL;
/freebsd-11.0-release/contrib/xz/src/liblzma/api/lzma/
H A Dindex_hash.h2 * \file lzma/index_hash.h
31 * If index_hash is NULL, a new lzma_index_hash structure is allocated,
35 * If index_hash is non-NULL, it is reinitialized and the same pointer
37 * pointer than the index_hash that was given as an argument.
40 lzma_index_hash *index_hash, const lzma_allocator *allocator)
48 lzma_index_hash *index_hash, const lzma_allocator *allocator)
65 extern LZMA_API(lzma_ret) lzma_index_hash_append(lzma_index_hash *index_hash,
82 * \param index_hash Pointer to a lzma_index_hash structure
95 extern LZMA_API(lzma_ret) lzma_index_hash_decode(lzma_index_hash *index_hash,
106 const lzma_index_hash *index_hash)
[all...]
/freebsd-11.0-release/lib/liblzma/
H A DMakefile24 index_hash.h \
69 index_hash.c \

Completed in 64 milliseconds