Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/lz4/
Dlz4.h224 #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */ macro
225 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) +…
Dlz4.c1345 …if ((U32)srcSize > (U32)LZ4_MAX_INPUT_SIZE) { return 0; } /* Unsupported srcSize, too large (or n… in LZ4_compress_generic()
2547 if (maxBlockSize > LZ4_MAX_INPUT_SIZE) return 0; in LZ4_decoderRingBufferSize()