Home
last modified time | relevance | path

Searched refs:decomp_state (Results 1 – 3 of 3) sorted by relevance

/freebsd/stand/efi/loader/
H A Ddecompress.c23 struct decomp_state struct
39 EFI_STATUS (*init)(decomp_state *dctx, uint8_t *first_buf, size_t buflen, argument
41 enum step_return (*step)(decomp_state *dctx, uint8_t *buf, size_t len, size_t offset); argument
42 void (*fini)(decomp_state *dctx, bool flush); argument
74 alloc_buffer(decomp_state *dctx, size_t size) in alloc_buffer()
90 grow_buffer(decomp_state *dctx) in grow_buffer()
115 free_buffer(decomp_state *dctx) in free_buffer()
126 zlib_init(decomp_state *dctx, uint8_t *first_buf, size_t buflen, size_t size_hint) in zlib_init()
144 zlib_step(decomp_state *dctx, uint8_t *buf, size_t len, size_t offset) in zlib_step()
178 zlib_fini(decomp_state *dctx, bool flush) in zlib_fini()
[all …]
H A Ddecompress.h12 typedef struct decomp_state decomp_state; typedef
14 decomp_state *decomp_init(uint8_t *buf, size_t buflen, size_t size_hint);
15 enum step_return decomp_step(decomp_state *dctx, uint8_t *buf, size_t len, size_t offset);
16 void decomp_fini(decomp_state *dctx, bool flush);
17 EFI_PHYSICAL_ADDRESS decomp_buffer(decomp_state *dctx);
18 size_t decomp_buffer_length(decomp_state *dctx);
H A Dmemdisk.c36 decomp_state *dctx;
51 decomp_state *dctx = ctx->dctx; in download_data()