Home
last modified time | relevance | path

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

/external/lz4/examples/
DblockStreaming_ringBuffer.c106 const int decBytes = LZ4_decompress_safe_continue( in test_decompress() local
108 if(decBytes <= 0) break; in test_decompress()
109 decOffset += decBytes; in test_decompress()
110 write_bin(outFp, decPtr, decBytes); in test_decompress()
DblockStreaming_lineByLine.c107 const int decBytes = LZ4_decompress_safe_continue( in test_decompress() local
109 if (decBytes <= 0) break; in test_decompress()
110 write_bin(outFp, decPtr, decBytes); in test_decompress()
113 decOffset += decBytes; in test_decompress()
DHCStreaming_ringBuffer.c111 const int decBytes = LZ4_decompress_safe_continue( in test_decompress() local
113 if(decBytes <= 0) in test_decompress()
116 decOffset += decBytes; in test_decompress()
117 write_bin(outFp, decPtr, decBytes); in test_decompress()
DblockStreaming_doubleBuffer.c102 const int decBytes = LZ4_decompress_safe_continue( in test_decompress() local
104 if(decBytes <= 0) { in test_decompress()
107 write_bin(outFp, decPtr, (size_t) decBytes); in test_decompress()
DdictionaryRandomAccess.c158 const int decBytes = LZ4_decompress_safe_continue( in test_decompress() local
160 if(decBytes <= 0) { exit(5); } in test_decompress()
163 int blockLength = MIN(length, (decBytes - offset)); in test_decompress()