Home
last modified time | relevance | path

Searched refs:mOutputPos (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
DTianoCompress.c273 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1333 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) { in Output()
1335 mOutputPos = 0; in Output()
1338 CPos = mOutputPos++; in Output()
1342 mBuf[mOutputPos++] = (UINT8) CharC; in Output()
1346 mBuf[mOutputPos++] = (UINT8) (Pos >> 24); in Output()
1347 mBuf[mOutputPos++] = (UINT8) (Pos >> 16); in Output()
1348 mBuf[mOutputPos++] = (UINT8) (Pos >> (UINT8_BIT)); in Output()
1349 mBuf[mOutputPos++] = (UINT8) Pos; in Output()
1376 mOutputPos = mOutputMask = 0; in HufEncodeStart()
DEfiCompress.c255 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1202 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) { in Output()
1204 mOutputPos = 0; in Output()
1206 CPos = mOutputPos++; in Output()
1209 mBuf[mOutputPos++] = (UINT8) c; in Output()
1213 mBuf[mOutputPos++] = (UINT8)(p >> UINT8_BIT); in Output()
1214 mBuf[mOutputPos++] = (UINT8) p; in Output()
1236 mOutputPos = mOutputMask = 0; in HufEncodeStart()
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
DTianoCompress.c254 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1320 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) { in Output()
1322 mOutputPos = 0; in Output()
1325 CPos = mOutputPos++; in Output()
1329 mBuf[mOutputPos++] = (UINT8) CharC; in Output()
1333 mBuf[mOutputPos++] = (UINT8) (Pos >> 24); in Output()
1334 mBuf[mOutputPos++] = (UINT8) (Pos >> 16); in Output()
1335 mBuf[mOutputPos++] = (UINT8) (Pos >> (UINT8_BIT)); in Output()
1336 mBuf[mOutputPos++] = (UINT8) Pos; in Output()
1363 mOutputPos = mOutputMask = 0; in HufEncodeStart()
DEfiCompress.c245 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1199 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) { in Output()
1201 mOutputPos = 0; in Output()
1203 CPos = mOutputPos++; in Output()
1206 mBuf[mOutputPos++] = (UINT8) c; in Output()
1210 mBuf[mOutputPos++] = (UINT8)(p >> UINT8_BIT); in Output()
1211 mBuf[mOutputPos++] = (UINT8) p; in Output()
1233 mOutputPos = mOutputMask = 0; in HufEncodeStart()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
DCompress.c96 STATIC UINT32 mOutputPos; variable
1167 mOutputPos = mOutputMask = 0; in HufEncodeStart()
1190 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) { in CompressOutput()
1192 mOutputPos = 0; in CompressOutput()
1195 CPos = mOutputPos++; in CompressOutput()
1198 mBuf[mOutputPos++] = (UINT8) LoopVar5; in CompressOutput()
1202 mBuf[mOutputPos++] = (UINT8)(LoopVar7 >> UINT8_BIT); in CompressOutput()
1203 mBuf[mOutputPos++] = (UINT8) LoopVar7; in CompressOutput()
/device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
DTianoCompress.c72 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
1146 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) { in Output()
1148 mOutputPos = 0; in Output()
1151 CPos = mOutputPos++; in Output()
1155 mBuf[mOutputPos++] = (UINT8) CharC; in Output()
1159 mBuf[mOutputPos++] = (UINT8) (Pos >> 24); in Output()
1160 mBuf[mOutputPos++] = (UINT8) (Pos >> 16); in Output()
1161 mBuf[mOutputPos++] = (UINT8) (Pos >> (UINT8_BIT)); in Output()
1162 mBuf[mOutputPos++] = (UINT8) Pos; in Output()
1189 mOutputPos = mOutputMask = 0; in HufEncodeStart()
/device/linaro/bootloader/edk2/EdkShellPkg/
DShellR64.patch393 @@ -262,7 +262,7 @@ STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc;