Home
last modified time | relevance | path

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

/external/zlib/src/contrib/delphi/
DZLib.pas134 out OutBuf: Pointer; out OutBytes: Integer);
144 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
152 const OutBuf: Pointer; BufSize: Integer);
287 out OutBuf: Pointer; out OutBytes: Integer);
296 GetMem(OutBuf, OutBytes);
300 strm.next_out := OutBuf;
306 P := OutBuf;
308 ReallocMem(OutBuf, OutBytes);
309 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
315 ReallocMem(OutBuf, strm.total_out);
[all …]
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp593 Byte *OutBuf; member
596 CXzUnpackerCPP(): InBuf(0), OutBuf(0) in CXzUnpackerCPP()
604 MyFree(OutBuf); in ~CXzUnpackerCPP()
618 xzu.OutBuf = (Byte *)MyAlloc(kOutBufSize); in Decode()
619 if (!xzu.InBuf || !xzu.OutBuf) in Decode()
639 xzu.OutBuf + outPos, &outLen, in Decode()
659 RINOK(WriteStream(outStream, xzu.OutBuf, outPos)); in Decode()