Lines Matching refs:xzu
793 static HRESULT DecodeBlock(CXzUnpackerCPP2 &xzu,
803 XzUnpacker_Init(&xzu.p);
805 if (!xzu.InBuf)
807 xzu.InBuf = (Byte *)MidAlloc(kInBufSize);
808 if (!xzu.InBuf)
812 xzu.p.streamFlags = (UInt16)streamFlags;
813 XzUnpacker_PrepareToRandomBlockDecoding(&xzu.p);
815 XzUnpacker_SetOutBuf(&xzu.p, dest, unpackSize);
836 readRes = seqInStream->Read(xzu.InBuf, rem, &inSize);
844 const SRes res = XzUnpacker_Code(&xzu.p,
848 xzu.InBuf + inPos, &inLen,
867 const BoolInt blockFinished = XzUnpacker_IsBlockFinished(&xzu.p);
873 if (XzUnpacker_GetPackSizeForIndex(&xzu.p) != packSize)