Searched defs:TableBits (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c111 If TableBits > 16, then ASSERT ().
116 @param TableBits The width of the mapping table
128 IN UINT16 TableBits,
151 ASSERT (TableBits <= 16);
175 JuBits = (UINT16) (16 - TableBits);
178 for (Index = 1; Index <= TableBits; Index++) {
180 Weight[Index] = (UINT16) (1U << (TableBits - Index));
188 Index = (UINT16) (Start[TableBits + 1] >> JuBits);
191 Index3 = (UINT16) (1U << TableBits);
198 Mask = (UINT16) (1U << (15 - TableBits));
124 MakeTable( IN SCRATCH_DATA *Sd, IN UINT16 NumOfChar, IN UINT8 *BitLen, IN UINT16 TableBits, OUT UINT16 *Table ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c120 If TableBits > 16, then ASSERT ().
125 @param TableBits The width of the mapping table.
137 IN UINT16 TableBits,
160 ASSERT (TableBits <= 16);
184 JuBits = (UINT16) (16 - TableBits);
187 for (Index = 1; Index <= TableBits; Index++) {
189 Weight[Index] = (UINT16) (1U << (TableBits - Index));
197 Index = (UINT16) (Start[TableBits + 1] >> JuBits);
200 Index3 = (UINT16) (1U << TableBits);
207 Mask = (UINT16) (1U << (15 - TableBits));
133 MakeTable( IN SCRATCH_DATA *Sd, IN UINT16 NumOfChar, IN UINT8 *BitLen, IN UINT16 TableBits, OUT UINT16 *Table ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DDecompress.c167 IN UINT16 TableBits,
181 TableBits - The width of the mapping table
223 JuBits = (UINT16) (16 - TableBits);
225 for (Index = 1; Index <= TableBits; Index++) {
227 Weight[Index] = (UINT16) (1U << (TableBits - Index));
235 Index = (UINT16) (Start[TableBits + 1] >> JuBits);
238 Index3 = (UINT16) (1U << TableBits);
245 Mask = (UINT16) (1U << (15 - TableBits));
256 if (Len <= TableBits) {
266 Index = (UINT16) (Len - TableBits);
163 MakeTable( IN SCRATCH_DATA *Sd, IN UINT16 NumOfChar, IN UINT8 *BitLen, IN UINT16 TableBits, OUT UINT16 *Table ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c2121 IN UINT16 TableBits,
2135 TableBits - The width of the mapping table
2183 JuBits = (UINT16) (16 - TableBits);
2185 for (Index = 1; Index <= TableBits; Index++) {
2187 Weight[Index] = (UINT16) (1U << (TableBits - Index));
2195 Index = (UINT16) (Start[TableBits + 1] >> JuBits);
2198 Index3 = (UINT16) (1U << TableBits);
2205 Mask = (UINT16) (1U << (15 - TableBits));
2216 if (Len <= TableBits) {
2226 Index = (UINT16) (Len - TableBits);
2117 MakeTable( IN SCRATCH_DATA *Sd, IN UINT16 NumOfChar, IN UINT8 *BitLen, IN UINT16 TableBits, OUT UINT16 *Table ) argument
[all...]

Completed in 37 milliseconds