• Home
  • Raw
  • Download

Lines Matching refs:uncompr

57                         uncompr: Pointer; uncomprLen: LongInt);
66 StrCopy(PChar(uncompr), 'garbage');
68 err := uncompress(uncompr, uncomprLen, compr, comprLen);
71 if StrComp(PChar(uncompr), hello) <> 0 then
74 WriteLn('uncompress(): ', PChar(uncompr));
83 uncompr: Pointer;
127 StrCopy(PChar(uncompr), 'garbage');
129 if gzread(zfile, uncompr, uncomprLen) <> len then
134 if StrComp(PChar(uncompr), hello) <> 0 then
136 WriteLn('bad gzread: ', PChar(uncompr));
140 WriteLn('gzread(): ', PChar(uncompr));
161 gzgets(zfile, PChar(uncompr), uncomprLen);
162 uncomprLen := StrLen(PChar(uncompr));
168 if StrComp(PChar(uncompr), hello + 6) <> 0 then
174 WriteLn('gzgets() after gzseek: ', PChar(uncompr));
230 uncompr: Pointer; uncomprLen : LongInt);
234 StrCopy(PChar(uncompr), 'garbage');
242 d_stream.next_out := uncompr;
261 if StrComp(PChar(uncompr), hello) <> 0 then
264 WriteLn('inflate(): ', PChar(uncompr));
273 uncompr: Pointer; uncomprLen: LongInt);
290 c_stream.next_in := uncompr;
306 c_stream.next_in := uncompr;
325 uncompr: Pointer; uncomprLen: LongInt);
329 StrCopy(PChar(uncompr), 'garbage');
343 d_stream.next_out := uncompr; (* discard the output *)
408 uncompr: Pointer; uncomprLen : LongInt);
412 StrCopy(PChar(uncompr), 'garbage');
424 d_stream.next_out := uncompr;
442 WriteLn('after inflateSync(): hel', PChar(uncompr));
485 uncompr: Pointer; uncomprLen: LongInt);
489 StrCopy(PChar(uncompr), 'garbage');
501 d_stream.next_out := uncompr;
521 if StrComp(PChar(uncompr), hello) <> 0 then
524 WriteLn('inflate with dictionary: ', PChar(uncompr));
528 var compr, uncompr: Pointer;
541 GetMem(uncompr, uncomprLen);
542 if (compr = NIL) or (uncompr = NIL) then
548 FillChar(uncompr^, uncomprLen, 0);
552 test_compress(compr, comprLen, uncompr, uncomprLen);
558 test_gzio(ParamStr(1), uncompr, uncomprLen)
560 test_gzio(TESTFILE, uncompr, uncomprLen);
569 test_inflate(compr, comprLen, uncompr, uncomprLen);
574 test_large_deflate(compr, comprLen, uncompr, uncomprLen);
578 test_large_inflate(compr, comprLen, uncompr, uncomprLen);
587 test_sync(compr, comprLen, uncompr, uncomprLen);
594 test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
598 FreeMem(uncompr, uncomprLen);