Searched refs:mBufSiz (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
312 mBufSiz = 0;
439 mBufSiz = BLKSIZ;
440 mBuf = malloc (mBufSiz);
442 mBufSiz = (mBufSiz / 10U) * 9U;
443 if (mBufSiz < 4 * 1024U) {
447 mBuf = malloc (mBufSiz);
1321 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) {
H A DEfiCompress.c253 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
301 mBufSiz = 0;
430 mBufSiz = 16 * 1024U;
431 while ((mBuf = malloc(mBufSiz)) == NULL) {
432 mBufSiz = (mBufSiz / 10U) * 9U;
433 if (mBufSiz < 4 * 1024U) {
1200 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) {
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DCompress.c96 STATIC UINT32 mBufSiz = 0; variable
203 mBufSiz = BLKSIZ;
204 mBuf = AllocateZeroPool (mBufSiz);
206 mBufSiz = (mBufSiz / 10U) * 9U;
207 if (mBufSiz < 4 * 1024U) {
211 mBuf = AllocateZeroPool (mBufSiz);
1217 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) {
1361 mBufSiz = 0;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c79 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
130 mBufSiz = 0;
261 mBufSiz = BLKSIZ;
262 mBuf = malloc (mBufSiz);
264 mBufSiz = (mBufSiz / 10U) * 9U;
265 if (mBufSiz < 4 * 1024U) {
269 mBuf = malloc (mBufSiz);
1144 if (mOutputPos >= mBufSiz - 5 * UINT8_BIT) {

Completed in 156 milliseconds