Home
last modified time | relevance | path

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

/external/zlib/src/contrib/pascal/
Dzlibpas.pas29 next_in: PChar; (* next input byte *)
33 next_out: PChar; (* next output byte should be put there *)
37 msg: PChar; (* last error message, NULL if no error *)
55 extra: PChar; (* pointer to extra field or Z_NULL if none *)
58 name: PChar; (* pointer to zero-terminated file name or Z_NULL *)
60 comment: PChar; (* pointer to zero-terminated comment or Z_NULL *)
105 function zlibVersion: PChar; in zlibVersion()
116 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar; in deflateSetDictionary() argument
127 function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; in inflateSetDictionary() argument
137 windowBits: Integer; window: PChar): Integer;
[all …]
Dexample.pas31 const hello: PChar = 'hello, hello!';
33 const dictionary: PChar = 'hello';
66 StrCopy(PChar(uncompr), 'garbage');
71 if StrComp(PChar(uncompr), hello) <> 0 then
74 WriteLn('uncompress(): ', PChar(uncompr));
82 procedure test_gzio(const fname: PChar; (* compressed file name *)
127 StrCopy(PChar(uncompr), 'garbage');
134 if StrComp(PChar(uncompr), hello) <> 0 then
136 WriteLn('bad gzread: ', PChar(uncompr));
140 WriteLn('gzread(): ', PChar(uncompr));
[all …]
/external/zlib/src/contrib/delphi/
DZLib.pas24 next_in: PChar; // next input byte
28 next_out: PChar; // next output byte should be put here
32 msg: PChar; // last error message, NULL if no error
241 function deflateInit_(var strm: TZStreamRec; level: Integer; version: PChar; in deflateInit_() argument
247 function inflateInit_(var strm: TZStreamRec; version: PChar; in inflateInit_() argument
309 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
352 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas1608 FData: PChar;
1689 constructor Create(const AData: PChar;
3175 constructor TANTLRStringStream.Create(const AData: PChar; argument