Searched refs:mOutputPos (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DTianoCompress.c262 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1321 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) {
1323 mOutputPos = 0;
1326 CPos = mOutputPos++;
1330 mBuf[mOutputPos++] = (UINT8) CharC;
1334 mBuf[mOutputPos++] = (UINT8) (Pos >> 24);
1335 mBuf[mOutputPos++] = (UINT8) (Pos >> 16);
1336 mBuf[mOutputPos++] = (UINT8) (Pos >> (UINT8_BIT));
1337 mBuf[mOutputPos++] = (UINT8) Pos;
1364 mOutputPos
[all...]
H A DEfiCompress.c253 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1200 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) {
1202 mOutputPos = 0;
1204 CPos = mOutputPos++;
1207 mBuf[mOutputPos++] = (UINT8) c;
1211 mBuf[mOutputPos++] = (UINT8)(p >> UINT8_BIT);
1212 mBuf[mOutputPos++] = (UINT8) p;
1234 mOutputPos = mOutputMask = 0;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DCompress.c97 STATIC UINT32 mOutputPos; variable
1193 mOutputPos = mOutputMask = 0;
1217 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) {
1219 mOutputPos = 0;
1222 CPos = mOutputPos++;
1225 mBuf[mOutputPos++] = (UINT8) LoopVar5;
1229 mBuf[mOutputPos++] = (UINT8)(LoopVar7 >> UINT8_BIT);
1230 mBuf[mOutputPos++] = (UINT8) LoopVar7;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c79 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1144 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) {
1146 mOutputPos = 0;
1149 CPos = mOutputPos++;
1153 mBuf[mOutputPos++] = (UINT8) CharC;
1157 mBuf[mOutputPos++] = (UINT8) (Pos >> 24);
1158 mBuf[mOutputPos++] = (UINT8) (Pos >> 16);
1159 mBuf[mOutputPos++] = (UINT8) (Pos >> (UINT8_BIT));
1160 mBuf[mOutputPos++] = (UINT8) Pos;
1187 mOutputPos
[all...]

Completed in 141 milliseconds