Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
DCompress.c95 STATIC UINT32 mBufSiz = 0; variable
199 mBufSiz = BLKSIZ; in AllocateMemory()
200 mBuf = AllocateZeroPool (mBufSiz); in AllocateMemory()
202 mBufSiz = (mBufSiz / 10U) * 9U; in AllocateMemory()
203 if (mBufSiz < 4 * 1024U) { in AllocateMemory()
207 mBuf = AllocateZeroPool (mBufSiz); in AllocateMemory()
1190 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) { in CompressOutput()
1331 mBufSiz = 0; in Compress()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
DTianoCompress.c273 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
324 mBufSiz = 0; in TianoCompress()
451 mBufSiz = BLKSIZ; in AllocateMemory()
452 mBuf = malloc (mBufSiz); in AllocateMemory()
454 mBufSiz = (mBufSiz / 10U) * 9U; in AllocateMemory()
455 if (mBufSiz < 4 * 1024U) { in AllocateMemory()
459 mBuf = malloc (mBufSiz); in AllocateMemory()
1333 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) { in Output()
DEfiCompress.c255 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
303 mBufSiz = 0; in EfiCompress()
432 mBufSiz = 16 * 1024U; in AllocateMemory()
433 while ((mBuf = malloc(mBufSiz)) == NULL) { in AllocateMemory()
434 mBufSiz = (mBufSiz / 10U) * 9U; in AllocateMemory()
435 if (mBufSiz < 4 * 1024U) { in AllocateMemory()
1202 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) { in Output()
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
DTianoCompress.c254 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
304 mBufSiz = 0; in TianoCompress()
438 mBufSiz = BLKSIZ; in AllocateMemory()
439 mBuf = malloc (mBufSiz); in AllocateMemory()
441 mBufSiz = (mBufSiz / 10U) * 9U; in AllocateMemory()
442 if (mBufSiz < 4 * 1024U) { in AllocateMemory()
446 mBuf = malloc (mBufSiz); in AllocateMemory()
1320 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) { in Output()
DEfiCompress.c245 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
293 mBufSiz = 0; in EfiCompress()
429 mBufSiz = 16 * 1024U; in AllocateMemory()
430 while ((mBuf = malloc(mBufSiz)) == NULL) { in AllocateMemory()
431 mBufSiz = (mBufSiz / 10U) * 9U; in AllocateMemory()
432 if (mBufSiz < 4 * 1024U) { in AllocateMemory()
1199 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) { in Output()
/device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
DTianoCompress.c72 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
123 mBufSiz = 0; in TianoCompress()
263 mBufSiz = BLKSIZ; in AllocateMemory()
264 mBuf = malloc (mBufSiz); in AllocateMemory()
266 mBufSiz = (mBufSiz / 10U) * 9U; in AllocateMemory()
267 if (mBufSiz < 4 * 1024U) { in AllocateMemory()
271 mBuf = malloc (mBufSiz); in AllocateMemory()
1146 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) { in Output()
/device/linaro/bootloader/edk2/EdkShellPkg/
DShellR64.patch393 @@ -262,7 +262,7 @@ STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc;