Home
last modified time | relevance | path

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

/third_party/lz4/programs/
H A Dbench.c367 size_t const maxInSize = (size_t)LZ4_MAX_INPUT_SIZE / decMultiplier; in BMK_benchMem()
368 size_t const maxDecSize = srcSize < maxInSize ? srcSize * decMultiplier : LZ4_MAX_INPUT_SIZE; in BMK_benchMem()
400 size_t const resCapa = (thisBlockSize < maxInSize) ? resMaxSize : LZ4_MAX_INPUT_SIZE; in BMK_benchMem()
707 if (benchedSize > LZ4_MAX_INPUT_SIZE) { in BMK_benchFileTable()
708 benchedSize = LZ4_MAX_INPUT_SIZE; in BMK_benchFileTable()
/third_party/lz4/lib/
H A Dlz4.h183 * srcSize : max supported value is LZ4_MAX_INPUT_SIZE.
211 #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */ macro
212 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
219 inputSize : max supported value is LZ4_MAX_INPUT_SIZE
H A Dlz4.c1324 if ((U32)srcSize > (U32)LZ4_MAX_INPUT_SIZE) { return 0; } /* Unsupported srcSize, too large (or negative) */ in LZ4_compress_generic()
2511 if (maxBlockSize > LZ4_MAX_INPUT_SIZE) return 0; in LZ4_decoderRingBufferSize()
H A Dlz4hc.c837 if ((U32)*srcSizePtr > (U32)LZ4_MAX_INPUT_SIZE) return 0; /* Unsupported input size (too large or negative) */ in LZ4HC_compress_generic_internal()
/third_party/f2fs-tools/fsck/
H A Dcompress.c34 #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */ macro

Completed in 11 milliseconds