Home
last modified time | relevance | path

Searched refs:unBytes (Results 1 – 1 of 1) sorted by relevance

/external/lz4/tests/
Dfasttest.c72 int32_t unBytes; in test_decompress() local
74 memcpy(&unBytes, compressed + offset, 4); in test_decompress()
78 if(bytes == 0 && unBytes == 0) return 0; in test_decompress()
79 if(bytes <= 0 || unBytes <= 0 || unBytes > 1024) return 1; in test_decompress()
85 lz4StreamDecode, compressed + offset, output, unBytes); in test_decompress()
88 { int const r = memcmp(uncompressed + unOffset, output, unBytes); in test_decompress()
93 unOffset += unBytes; in test_decompress()
94 lastBytes = unBytes; in test_decompress()