Home
last modified time | relevance | path

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

/external/lz4/examples/
DblockStreaming_ringBuffer.c67 char cmpBuf[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)]; in test_compress()
93 char cmpBuf[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)]; in test_decompress()
DblockStreaming_doubleBuffer.c52 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_compress()
78 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_decompress()
DblockStreaming_lineByLine.c41 char* const cmpBuf = malloc(LZ4_COMPRESSBOUND(messageMaxBytes)); in test_compress()
89 char* const cmpBuf = malloc(LZ4_COMPRESSBOUND(messageMaxBytes)); in test_decompress()
DHCStreaming_ringBuffer.c71 char cmpBuf[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)]; in test_compress()
100 char cmpBuf[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)]; in test_decompress()
/external/lz4/lib/
Dlz4.h101 #define LZ4_COMPRESSBOUND(isize) ((unsigned int)(isize) > (unsigned int)LZ4_MAX_INPUT_SIZE ? 0 : (… macro
Dlz4.c429 int LZ4_compressBound(int isize) { return LZ4_COMPRESSBOUND(isize); } in LZ4_compressBound()
/external/lz4/programs/
Dlz4io.c501 if (blockSize > LZ4_COMPRESSBOUND(LEGACY_BLOCKSIZE)) in decodeLegacyStream()
Dfuzzer.c285 # define FUZ_max LZ4_COMPRESSBOUND(LEN) in FUZ_test()