Home
last modified time | relevance | path

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

/external/lz4/examples/
DblockStreaming_doubleBuffer.c57 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_compress()
85 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_decompress()
DblockStreaming_lineByLine.c44 const size_t cmpBufBytes = LZ4_COMPRESSBOUND(messageMaxBytes); in test_compress()
93 char* const cmpBuf = (char*) malloc(LZ4_COMPRESSBOUND(messageMaxBytes)); in test_decompress()
DdictionaryRandomAccess.c83 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_compress()
147 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)]; in test_decompress()
DblockStreaming_ringBuffer.c64 #define CMPBUFSIZE (LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)) in test_compress()
DHCStreaming_ringBuffer.c72 #define CMPBUFSIZE (LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)) in test_compress()
/external/f2fs-tools/fsck/
Dcompress.c77 size_t alloc = size + LZ4_COMPRESSBOUND(size) in lz4_compress_init()
/external/lz4/lib/
Dlz4.h171 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) +… macro
Dlz4.c607 int LZ4_compressBound(int isize) { return LZ4_COMPRESSBOUND(isize); } in LZ4_compressBound()
/external/lz4/programs/
Dlz4io.c914 if (blockSize > LZ4_COMPRESSBOUND(LEGACY_BLOCKSIZE)) { in LZ4IO_decodeLegacyStream()
/external/lz4/tests/
Dfuzzer.c1057 int const maxCSize = LZ4_COMPRESSBOUND(sampleSize); in FUZ_unitTests()