Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp615 CXzUnpackerCPP xzu; in Decode() local
616 XzUnpacker_Init(&xzu.p); in Decode()
617 xzu.InBuf = (Byte *)MyAlloc(kInBufSize); in Decode()
618 xzu.OutBuf = (Byte *)MyAlloc(kOutBufSize); in Decode()
619 if (!xzu.InBuf || !xzu.OutBuf) in Decode()
631 RINOK(seqInStream->Read(xzu.InBuf, kInBufSize, &inSize)); in Decode()
638 SRes res = XzUnpacker_Code(&xzu.p, in Decode()
639 xzu.OutBuf + outPos, &outLen, in Decode()
640 xzu.InBuf + inPos, &inLen, in Decode()
659 RINOK(WriteStream(outStream, xzu.OutBuf, outPos)); in Decode()
[all …]