Searched defs:mBitCount (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLibInternals.h57 UINT16 mBitCount; member in struct:__anon10459
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLibInternals.h48 UINT16 mBitCount; member in struct:__anon12454
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.h66 UINT16 mBitCount; member in struct:__anon10254
H A DTianoCompress.c78 STATIC INT32 mRemainder, mMatchLen, mBitCount, mHeapSize, mN; variable
1255 while (Number >= mBitCount) {
1257 // Number -= mBitCount should never equal to 32
1259 Temp = (UINT8) (mSubBitBuf | (Value >> (Number -= mBitCount)));
1267 mBitCount = UINT8_BIT;
1270 mSubBitBuf |= Value << (mBitCount -= Number);
1322 mBitCount = UINT8_BIT;
2056 while (NumOfBits > Sd->mBitCount) {
2058 Sd->mBitBuf |= (UINT32) (Sd->mSubBitBuf << (NumOfBits = (UINT16) (NumOfBits - Sd->mBitCount)));
2067 Sd->mBitCount
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DDecompress.c58 UINT16 mBitCount; member in struct:__anon9960
100 while (NumOfBits > Sd->mBitCount) {
102 Sd->mBitBuf |= (UINT32) (Sd->mSubBitBuf << (NumOfBits = (UINT16) (NumOfBits - Sd->mBitCount)));
111 Sd->mBitCount = 8;
118 Sd->mBitCount = 8;
123 Sd->mBitCount = (UINT16) (Sd->mBitCount - NumOfBits);
124 Sd->mBitBuf |= Sd->mSubBitBuf >> Sd->mBitCount;
H A DEfiCompress.c252 STATIC INT32 mRemainder, mMatchLen, mBitCount, mHeapSize, mN; variable
1296 if (n < mBitCount) {
1297 mSubBitBuf |= x << (mBitCount -= n);
1300 Temp = (UINT8)(mSubBitBuf | (x >> (n -= mBitCount)));
1307 mSubBitBuf = x << (mBitCount = UINT8_BIT - n);
1316 mSubBitBuf = x << (mBitCount = 2 * UINT8_BIT - n);
1364 mBitCount = UINT8_BIT;
H A DTianoCompress.c261 STATIC INT32 mRemainder, mMatchLen, mBitCount, mHeapSize, mN; variable
1432 while (Number >= mBitCount) {
1434 // Number -= mBitCount should never equal to 32
1436 Temp = (UINT8) (mSubBitBuf | (Value >> (Number -= mBitCount)));
1443 mBitCount = UINT8_BIT;
1446 mSubBitBuf |= Value << (mBitCount -= Number);
1497 mBitCount = UINT8_BIT;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DCompress.c93 STATIC INT32 mBitCount; variable
886 if (LoopVar8 < mBitCount) {
887 mSubBitBuf |= x << (mBitCount -= LoopVar8);
890 Temp = (UINT8)(mSubBitBuf | (x >> (LoopVar8 -= mBitCount)));
897 mSubBitBuf = x << (mBitCount = UINT8_BIT - LoopVar8);
906 mSubBitBuf = x << (mBitCount = 2 * UINT8_BIT - LoopVar8);
1195 mBitCount = UINT8_BIT;

Completed in 48 milliseconds