Searched refs:comprLen (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/contrib/zstd/zlibWrapper/examples/ |
H A D | example.c | 59 void test_deflate OF((Byte *compr, uLong comprLen)); 60 void test_inflate OF((Byte *compr, uLong comprLen, 62 void test_large_deflate OF((Byte *compr, uLong comprLen, 64 void test_large_inflate OF((Byte *compr, uLong comprLen, 66 void test_flush OF((Byte *compr, uLong *comprLen)); 67 void test_sync OF((Byte *compr, uLong comprLen, 69 void test_dict_deflate OF((Byte *compr, uLong comprLen)); 70 void test_dict_inflate OF((Byte *compr, uLong comprLen, 105 void test_compress OF((Byte *compr, uLong comprLen, 113 void test_compress(compr, comprLen, uncompr, uncomprLen) in test_compress() argument [all …]
|
H A D | example_original.c | 54 void test_deflate OF((Byte *compr, uLong comprLen)); 55 void test_inflate OF((Byte *compr, uLong comprLen, 57 void test_large_deflate OF((Byte *compr, uLong comprLen, 59 void test_large_inflate OF((Byte *compr, uLong comprLen, 61 void test_flush OF((Byte *compr, uLong *comprLen)); 62 void test_sync OF((Byte *compr, uLong comprLen, 64 void test_dict_deflate OF((Byte *compr, uLong comprLen)); 65 void test_dict_inflate OF((Byte *compr, uLong comprLen, 97 void test_compress OF((Byte *compr, uLong comprLen, 105 void test_compress(compr, comprLen, uncompr, uncomprLen) in test_compress() argument [all …]
|
/freebsd/sys/contrib/zlib/test/ |
H A D | example.c | 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, in test_compress() argument 65 err = compress(compr, &comprLen, (const Bytef*)hello, len); in test_compress() 70 err = uncompress(uncompr, &uncomprLen, compr, comprLen); in test_compress() 166 static void test_deflate(Byte *compr, uLong comprLen) { in test_deflate() argument 181 while (c_stream.total_in != len && c_stream.total_out < comprLen) { in test_deflate() 201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_inflate() argument 219 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) { in test_inflate() 240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_large_deflate() argument 253 c_stream.avail_out = (uInt)comprLen; in test_large_deflate() 293 static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_large_inflate() argument [all …]
|