Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.h155 #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */ macro
156 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) +…
Dlz4hc.c741 …if ((U32)*srcSizePtr > (U32)LZ4_MAX_INPUT_SIZE) return 0; /* Unsupported input size (too … in LZ4HC_compress_generic_internal()
1184 assert(ip - anchor < LZ4_MAX_INPUT_SIZE); in LZ4HC_compress_optimal()
Dlz4.c698 …if ((U32)inputSize > (U32)LZ4_MAX_INPUT_SIZE) return 0; /* Unsupported inputSize, too large (or … in LZ4_compress_generic()
1788 if (maxBlockSize > LZ4_MAX_INPUT_SIZE) return 0; in LZ4_decoderRingBufferSize()
/external/lz4/programs/
Dbench.c473 if (benchedSize > LZ4_MAX_INPUT_SIZE) { in BMK_benchFileTable()
474 benchedSize = LZ4_MAX_INPUT_SIZE; in BMK_benchFileTable()
/external/lz4/
DNEWS247 lz4.h : introduced LZ4_MAX_INPUT_SIZE constant (Shay Green)