Home
last modified time | relevance | path

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

/external/zlib/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/clang/lib/Lex/
DLexer.cpp368 char *OutBuf = const_cast<char*>(Buffer); in getSpelling() local
372 *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, LangOpts); in getSpelling()
375 assert(unsigned(OutBuf-Buffer) != Tok.getLength() && in getSpelling()
378 return OutBuf-Buffer; in getSpelling()