|
ra8-firmware 0.1.0
Bare-metal firmware for the Renesas RA8 family (RA8D2 / RA8P1)
|
Streaming gzip inflater and nested TAR consumer. More...
Data Fields | |
| mz_stream | stream |
| Raw-DEFLATE miniz state. | |
| mdl_tar_stream_t | tar |
| Incremental decoded TAR state. | |
| uint8_t * | output |
| One bounded decoded chunk. | |
| uint32_t | output_cap |
| Extent of output. | |
| uint32_t | crc |
| Running decoded CRC32. | |
| uint64_t | raw_bytes |
| Exact decoded byte count. | |
| bool | ended |
| DEFLATE end marker observed. | |
Streaming gzip inflater and nested TAR consumer.
Definition at line 67 of file mdl_verify_tarball.c.
| uint32_t mdl_gzip_stream_t::crc |
Running decoded CRC32.
Definition at line 72 of file mdl_verify_tarball.c.
Referenced by internal_gzip_feed(), and internal_gzip_trailer_valid().
| bool mdl_gzip_stream_t::ended |
DEFLATE end marker observed.
Definition at line 74 of file mdl_verify_tarball.c.
Referenced by internal_gzip_consume(), internal_gzip_feed(), and internal_gzip_finish_deflate().
| uint8_t* mdl_gzip_stream_t::output |
One bounded decoded chunk.
Definition at line 70 of file mdl_verify_tarball.c.
Referenced by internal_gzip_feed(), and internal_gzip_init_inflate().
| uint32_t mdl_gzip_stream_t::output_cap |
Extent of output.
Definition at line 71 of file mdl_verify_tarball.c.
Referenced by internal_gzip_feed(), and internal_gzip_init_inflate().
| uint64_t mdl_gzip_stream_t::raw_bytes |
Exact decoded byte count.
Definition at line 73 of file mdl_verify_tarball.c.
Referenced by internal_gzip_feed(), and internal_gzip_trailer_valid().
| mz_stream mdl_gzip_stream_t::stream |
Raw-DEFLATE miniz state.
Definition at line 68 of file mdl_verify_tarball.c.
Referenced by internal_gzip_feed(), internal_gzip_finish_deflate(), internal_gzip_init_inflate(), and priv_mdl_verify_gzip_tar().
| mdl_tar_stream_t mdl_gzip_stream_t::tar |
Incremental decoded TAR state.
Definition at line 69 of file mdl_verify_tarball.c.
Referenced by internal_gzip_feed(), and priv_mdl_verify_gzip_tar().