Lines Matching refs:allocator
57 index_decode(void *coder_ptr, const lzma_allocator *allocator, in index_decode() argument
141 coder->index, allocator, in index_decode()
212 index_decoder_end(void *coder_ptr, const lzma_allocator *allocator) in index_decoder_end() argument
215 lzma_index_end(coder->index, allocator); in index_decoder_end()
216 lzma_free(coder, allocator); in index_decoder_end()
242 index_decoder_reset(lzma_index_coder *coder, const lzma_allocator *allocator, in index_decoder_reset() argument
253 coder->index = lzma_index_init(allocator); in index_decoder_reset()
269 index_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, in index_decoder_init() argument
272 lzma_next_coder_init(&index_decoder_init, next, allocator); in index_decoder_init()
279 coder = lzma_alloc(sizeof(lzma_index_coder), allocator); in index_decoder_init()
289 lzma_index_end(coder->index, allocator); in index_decoder_init()
292 return index_decoder_reset(coder, allocator, i, memlimit); in index_decoder_init()
310 const lzma_allocator *allocator, in lzma_index_buffer_decode() argument
320 return_if_error(index_decoder_reset(&coder, allocator, i, *memlimit)); in lzma_index_buffer_decode()
327 lzma_ret ret = index_decode(&coder, allocator, in, in_pos, in_size, in lzma_index_buffer_decode()
335 lzma_index_end(coder.index, allocator); in lzma_index_buffer_decode()