Home
last modified time | relevance | path

Searched refs:wia_except_list_t (Results 1 – 4 of 4) sorted by relevance

/dports/emulators/dolphin-emu/dolphin-3152428/docs/
H A DWIA.md129 …ding any `wia_except_list_t` structs. 0 is a special case meaning that every byte of the decompres…
133 …etween the recalculated hash data and the original hash data. (See also `wia_except_list_t` below.)
141 …n the full 2 MiB of data, and so on. The offsets start over at 0 for each new `wia_except_list_t`.|
144 ## `wia_except_list_t`
146 … or more `wia_except_list_t` structs before the actual data, one for each 2 MiB of data in the `wi…
155 Somewhat ironically, there are exceptions to how `wia_except_list_t` structs are handled:
157 …- For the compression method PURGE, the `wia_except_list_t` structs are stored uncompressed (in ot…
158 …- For the compression methods NONE and PURGE, if the end offset of the last ``wia_except_list_t`` …
166 |`u32 offset`|The offset of `data` within the decompressed data. (Any `wia_except_list_t` structs a…
180 …* For Wii partition data, each chunk contains one `wia_except_list_t` which contains exceptions fo…
[all …]
/dports/sysutils/wiimms/wiimms-iso-tools/src/
H A Dlib-wia.h297 typedef struct wia_except_list_t struct
302 } __attribute__ ((packed)) wia_except_list_t; // 0x02 = 2 = sizeof(wia_except_list_t) argument
H A Dlib-wia.c373 wia_except_list_t * elist = (wia_except_list_t*)except; in calc_except_size()
375 elist = (wia_except_list_t*)( elist->exception + ntohs(elist->n_exceptions) ); in calc_except_size()
661 memset(tempbuf,0,sizeof(wia_except_list_t)); in read_gdata()
699 wia_except_list_t * except_list = (wia_except_list_t*)tempbuf; in read_part_gdata()
738 except_list = (wia_except_list_t*)except; in read_part_gdata()
1390 wia_except_list_t * except, // NULL or exception list in write_data()
1405 TRACE_IF( except_size > wia->chunk_groups * sizeof(wia_except_list_t), in write_data()
1407 ( except_size - wia->chunk_groups * sizeof(wia_except_list_t) ) in write_data()
1650 wia_except_list_t * except_list = (wia_except_list_t*)tempbuf; in write_part_data()
1758 except_list = (wia_except_list_t*)except; in write_part_data()
[all …]
H A Dlib-std.c390 TRACE_SIZEOF(wia_except_list_t); in SetupLib()