Lines Matching refs:Byte
59 void test_deflate _Z_OF((Byte *compr, uLong comprLen));
60 void test_inflate _Z_OF((Byte *compr, uLong comprLen,
61 Byte *uncompr, uLong uncomprLen));
62 void test_large_deflate _Z_OF((Byte *compr, uLong comprLen,
63 Byte *uncompr, uLong uncomprLen));
64 void test_large_inflate _Z_OF((Byte *compr, uLong comprLen,
65 Byte *uncompr, uLong uncomprLen));
66 void test_flush _Z_OF((Byte *compr, uLong *comprLen));
67 void test_sync _Z_OF((Byte *compr, uLong comprLen,
68 Byte *uncompr, uLong uncomprLen));
69 void test_dict_deflate _Z_OF((Byte *compr, uLong comprLen));
70 void test_dict_inflate _Z_OF((Byte *compr, uLong comprLen,
71 Byte *uncompr, uLong uncomprLen));
103 void test_compress _Z_OF((Byte *compr, uLong comprLen,
104 Byte *uncompr, uLong uncomprLen));
106 Byte *uncompr, uLong uncomprLen));
111 void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
135 void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) {
158 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */
217 void test_deflate(Byte *compr, uLong comprLen) {
252 void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
291 void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
344 void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
383 void test_flush(Byte *compr, uLong *comprLen) {
418 void test_sync(Byte *compr, uLong comprLen, Byte *uncompr, uLong uncomprLen) {
459 void test_dict_deflate(Byte *compr, uLong comprLen) {
493 void test_dict_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
543 Byte *compr, *uncompr;
560 compr = (Byte*)calloc((uInt)comprLen, 1);
561 uncompr = (Byte*)calloc((uInt)uncomprLen, 1);