Home
last modified time | relevance | path

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

/external/vboot_reference/utility/
Deficompress.c265 STATIC UINT32 mBufSiz = 0, mOutputPos, mOutputMask, mSubBitBuf, mCrc; variable
313 mBufSiz = 0; in EfiCompress()
442 mBufSiz = 16 * 1024U; in AllocateMemory()
443 while ((mBuf = malloc(mBufSiz)) == NULL) { in AllocateMemory()
444 mBufSiz = (mBufSiz / 10U) * 9U; in AllocateMemory()
445 if (mBufSiz < 4 * 1024U) { in AllocateMemory()
1212 if (mOutputPos >= mBufSiz - 3 * UINT8_BIT) { in Output()