Searched refs:LZ4_COMPRESSBOUND (Results 1 – 9 of 9) sorted by relevance
57 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_compress()85 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_decompress()
44 const size_t cmpBufBytes = LZ4_COMPRESSBOUND(messageMaxBytes); in test_compress()93 char* const cmpBuf = (char*) malloc(LZ4_COMPRESSBOUND(messageMaxBytes)); in test_decompress()
83 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_compress()147 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_decompress()
67 #define CMPBUFSIZE (LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)) in test_compress()
69 #define CMPBUFSIZE (LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)) in test_compress()
118 char output[LZ4_COMPRESSBOUND(4096)]; in main()
148 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) +… macro
395 int LZ4_compressBound(int isize) { return LZ4_COMPRESSBOUND(isize); } in LZ4_compressBound()
719 if (blockSize > LZ4_COMPRESSBOUND(LEGACY_BLOCKSIZE)) { in LZ4IO_decodeLegacyStream()