Lines Matching refs:u8
29 u8 *destp; // Write-destination pointer 4B
32 u8 destTmpCnt; // Size of data being written: 1B
33 u8 flags; // Compression flag 1B
35 u8 _padding[2]; // 2 bytes
43 u8 *destp; // Write-destination pointer 4B
47 u8 destTmpCnt; // Size of data being written: 1B
48 u8 flags; // Compression flag 1B
49 u8 flagIndex; // Current compression flag index 1B
50 u8 lengthFlg; // Length-acquired flag 1B
51 u8 exFormat; // LZ77 compression extension option: 1B
52 u8 _padding[1]; // 1B
60 u8 *destp; // Write-destination pointer 4B
62 …u8 *treep; // Huffman encoding table, current pointer …
66 u8 srcTmpCnt; // Size of data being read 1B
67 … u8 destTmpCnt; // Number of bits that have been decoded 1B
68 u8 bitSize; // Size of encoded bits 1B
69 u8 _padding2[3]; // 3B
70 …u8 tree[0x200]; // Huffman encoding table 512B (32B is enough f…
76 void MI_InitUncompContextRL(MIUncompContextRL *context, u8 *dest,
78 void MI_InitUncompContextLZ(MIUncompContextLZ *context, u8 *dest,
80 void MI_InitUncompContextHuffman(MIUncompContextHuffman *context, u8 *dest,
83 s32 MI_ReadUncompRL8(MIUncompContextRL *context, const u8 *data, u32 len);
84 s32 MI_ReadUncompRL16(MIUncompContextRL *context, const u8 *data, u32 len);
85 s32 MI_ReadUncompLZ8(MIUncompContextLZ *context, const u8 *data, u32 len);
86 s32 MI_ReadUncompLZ16(MIUncompContextLZ *context, const u8 *data, u32 len);
87 s32 MI_ReadUncompHuffman(MIUncompContextHuffman *context, const u8 *data, u32 len);