HomeSort by relevance Sort by last modified time
    Searched refs:comprLen (Results 1 - 2 of 2) sorted by null

  /external/zlib/src/test/
example.c 37 void test_deflate OF((Byte *compr, uLong comprLen));
38 void test_inflate OF((Byte *compr, uLong comprLen,
40 void test_large_deflate OF((Byte *compr, uLong comprLen,
42 void test_large_inflate OF((Byte *compr, uLong comprLen,
44 void test_flush OF((Byte *compr, uLong *comprLen));
45 void test_sync OF((Byte *compr, uLong comprLen,
47 void test_dict_deflate OF((Byte *compr, uLong comprLen));
48 void test_dict_inflate OF((Byte *compr, uLong comprLen,
80 void test_compress OF((Byte *compr, uLong comprLen,
88 void test_compress(compr, comprLen, uncompr, uncomprLen
    [all...]
  /external/zlib/src/contrib/pascal/
example.pas 56 procedure test_compress(compr: Pointer; comprLen: LongInt;
63 err := compress(compr, comprLen, hello, len);
68 err := uncompress(uncompr, uncomprLen, compr, comprLen);
184 procedure test_deflate(compr: Pointer; comprLen: LongInt);
202 (c_stream.total_out < comprLen) do
229 procedure test_inflate(compr: Pointer; comprLen : LongInt;
248 (d_stream.total_in < comprLen) do
272 procedure test_large_deflate(compr: Pointer; comprLen: LongInt;
285 c_stream.avail_out := Integer(comprLen);
300 c_stream.avail_in := Integer(comprLen div 2)
    [all...]

Completed in 911 milliseconds