Home
last modified time | relevance | path

Searched refs:outSize (Results 1 – 5 of 5) 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/linux/fs/coda/
H A Dupcall.c42 static int coda_upcall(struct venus_comm *vc, int inSize, int *outSize,
710 int inSize, int *outSize, in coda_upcall() argument
736 req->uc_flags = outSize ? 0 : CODA_REQ_ASYNC; in coda_upcall()
738 req->uc_outSize = (outSize && *outSize) ? *outSize : inSize; in coda_upcall()
748 if (outSize == NULL) { in coda_upcall()
770 *outSize = req->uc_outSize; in coda_upcall()
/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()