Searched refs:PChar (Results 1 – 3 of 3) sorted by relevance
/external/zlib/contrib/pascal/ |
D | zlibpas.pas | 28 next_in: PChar; (* next input byte *) 32 next_out: PChar; (* next output byte should be put there *) 36 msg: PChar; (* last error message, NULL if no error *) 83 function zlibVersion: PChar; in zlibVersion() 94 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar; in deflateSetDictionary() argument 102 function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; in inflateSetDictionary() argument 108 windowBits: Integer; window: PChar): Integer; 115 function compress(dest: PChar; var destLen: LongInt; in compress() 116 const source: PChar; sourceLen: LongInt): Integer; 117 function compress2(dest: PChar; var destLen: LongInt; in compress2() [all …]
|
D | example.pas | 31 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/contrib/delphi/ |
D | ZLib.pas | 24 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)));
|