Lines Matching refs:srcSize
53 static void test_lz4(const uint8_t* srcData, int srcSize) { in test_lz4() argument
59 srcSize, in test_lz4()
79 if (decompressedSize != srcSize) { in test_lz4()
82 if (memcmp(srcData, decompressBuffer, srcSize) != 0) { in test_lz4()
89 static void test_lz4hc(const uint8_t* srcData, int srcSize) { in test_lz4hc() argument
95 srcSize, in test_lz4hc()
116 if (decompressedSize != srcSize) { in test_lz4hc()
119 if (memcmp(srcData, decompressBuffer, srcSize) != 0) { in test_lz4hc()
147 static const int srcSize = (int) sizeof(README_md); in test() local
148 test_lz4 (srcData, srcSize); in test()
149 test_lz4hc(srcData, srcSize); in test()