Lines Matching refs:allocator
86 stream_decoder_reset(lzma_stream_coder *coder, const lzma_allocator *allocator) in stream_decoder_reset() argument
89 coder->index_hash = lzma_index_hash_init(coder->index_hash, allocator); in stream_decoder_reset()
102 stream_decode(void *coder_ptr, const lzma_allocator *allocator, in stream_decode() argument
209 allocator, coder->buffer)); in stream_decode()
238 allocator, in stream_decode()
245 lzma_filters_free(filters, allocator); in stream_decode()
259 coder->block_decoder.coder, allocator, in stream_decode()
369 return_if_error(stream_decoder_reset(coder, allocator)); in stream_decode()
382 stream_decoder_end(void *coder_ptr, const lzma_allocator *allocator) in stream_decoder_end() argument
385 lzma_next_end(&coder->block_decoder, allocator); in stream_decoder_end()
386 lzma_index_hash_end(coder->index_hash, allocator); in stream_decoder_end()
387 lzma_free(coder, allocator); in stream_decoder_end()
422 lzma_next_coder *next, const lzma_allocator *allocator, in lzma_stream_decoder_init() argument
425 lzma_next_coder_init(&lzma_stream_decoder_init, next, allocator); in lzma_stream_decoder_init()
432 coder = lzma_alloc(sizeof(lzma_stream_coder), allocator); in lzma_stream_decoder_init()
456 return stream_decoder_reset(coder, allocator); in lzma_stream_decoder_init()