Home
last modified time | relevance | path

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

/openbmc/u-boot/lib/lzma/
H A DLzmaTools.c48 SizeT outSize; in lzmaBuffToBuffDecompress() local
61 outSize = 0; in lzmaBuffToBuffDecompress()
67 outSize += (UInt32)(b) << (i * 8); in lzmaBuffToBuffDecompress()
73 outSizeFull = (SizeT)outSize; in lzmaBuffToBuffDecompress()
80 } else if (outSizeHigh != 0 || (UInt32)(SizeT)outSize != outSize) { in lzmaBuffToBuffDecompress()
87 if (outSizeHigh != (SizeT)-1 || outSize != (SizeT)-1) { in lzmaBuffToBuffDecompress()
H A DLzmaDec.c868 SizeT outSize = *destLen; in LzmaDec_DecodeToBuf() local
879 if (outSize > p->dicBufSize - dicPos) in LzmaDec_DecodeToBuf()
886 outSizeCur = dicPos + outSize; in LzmaDec_DecodeToBuf()
897 outSize -= outSizeCur; in LzmaDec_DecodeToBuf()
901 if (outSizeCur == 0 || outSize == 0) in LzmaDec_DecodeToBuf()
1002 SizeT outSize = *destLen; in LzmaDecode() local
1012 p.dicBufSize = outSize; in LzmaDecode()
1017 res = LzmaDec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status); in LzmaDecode()
H A DTypes.h204 SRes (*Progress)(void *p, UInt64 inSize, UInt64 outSize);
/openbmc/intel-ipmi-oem/src/
H A Dsmbiosmdrv2handler.cpp679 size_t outSize = (xferLength > mdrv2->smbiosDir.dir[idIndex].xferSize) in mdr2GetDataBlock() local
682 if (outSize > UINT_MAX - xferOffset) in mdr2GetDataBlock()
688 if ((xferOffset + outSize) > mdrv2->smbiosDir.dir[idIndex].common.size) in mdr2GetDataBlock()
690 outSize = mdrv2->smbiosDir.dir[idIndex].common.size - xferOffset; in mdr2GetDataBlock()
693 uint32_t respXferLength = outSize; in mdr2GetDataBlock()
702 if ((xferOffset + outSize) > in mdr2GetDataBlock()
712 mdrv2->smbiosDir.dir[idIndex].dataStorage + xferOffset, outSize); in mdr2GetDataBlock()
719 std::vector<uint8_t> data(outSize); in mdr2GetDataBlock()
722 &mdrv2->smbiosDir.dir[idIndex].dataStorage[xferOffset + outSize], in mdr2GetDataBlock()