Lines Matching full:uncomprlen
57 uncompr: Pointer; uncomprLen: LongInt);
68 err := uncompress(uncompr, uncomprLen, compr, comprLen);
84 uncomprLen: LongInt);
129 if gzread(zfile, uncompr, uncomprLen) <> len then
161 gzgets(zfile, PChar(uncompr), uncomprLen);
162 uncomprLen := StrLen(PChar(uncompr));
163 if uncomprLen <> 7 then (* " hello!" *)
230 uncompr: Pointer; uncomprLen : LongInt);
247 while (d_stream.total_out < uncomprLen) and
273 uncompr: Pointer; uncomprLen: LongInt);
291 c_stream.avail_in := Integer(uncomprLen);
307 c_stream.avail_in := Integer(uncomprLen);
325 uncompr: Pointer; uncomprLen: LongInt);
344 d_stream.avail_out := Integer(uncomprLen);
354 if d_stream.total_out <> 2 * uncomprLen + comprLen div 2 then
408 uncompr: Pointer; uncomprLen : LongInt);
425 d_stream.avail_out := Integer(uncomprLen);
485 uncompr: Pointer; uncomprLen: LongInt);
502 d_stream.avail_out := Integer(uncomprLen);
529 comprLen, uncomprLen: LongInt;
539 uncomprLen := comprLen;
541 GetMem(uncompr, uncomprLen);
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);
589 comprLen := uncomprLen;
594 test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
598 FreeMem(uncompr, uncomprLen);