Lines Matching refs:allocator
87 stream_decoder_reset(lzma_stream_coder *coder, const lzma_allocator *allocator) in stream_decoder_reset() argument
90 coder->index_hash = lzma_index_hash_init(coder->index_hash, allocator); in stream_decoder_reset()
103 stream_decode(void *coder_ptr, const lzma_allocator *allocator, in stream_decode() argument
211 allocator, coder->buffer)); in stream_decode()
240 allocator, in stream_decode()
247 lzma_filters_free(filters, allocator); in stream_decode()
262 coder->block_decoder.coder, allocator, in stream_decode()
374 return_if_error(stream_decoder_reset(coder, allocator)); in stream_decode()
387 stream_decoder_end(void *coder_ptr, const lzma_allocator *allocator) in stream_decoder_end() argument
390 lzma_next_end(&coder->block_decoder, allocator); in stream_decoder_end()
391 lzma_index_hash_end(coder->index_hash, allocator); in stream_decoder_end()
392 lzma_free(coder, allocator); in stream_decoder_end()
427 lzma_next_coder *next, const lzma_allocator *allocator, in lzma_stream_decoder_init() argument
430 lzma_next_coder_init(&lzma_stream_decoder_init, next, allocator); in lzma_stream_decoder_init()
437 coder = lzma_alloc(sizeof(lzma_stream_coder), allocator); in lzma_stream_decoder_init()
461 return stream_decoder_reset(coder, allocator); in lzma_stream_decoder_init()