HomeSort by relevance Sort by last modified time
    Searched refs:LZ4_MAX_INPUT_SIZE (Results 1 - 4 of 4) sorted by null

  /external/lz4/lib/
lz4.h 135 srcSize : max supported value is LZ4_MAX_INPUT_SIZE.
155 #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */
156 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
164 inputSize : max supported value is LZ4_MAX_INPUT_SIZE
lz4.c 698 if ((U32)inputSize > (U32)LZ4_MAX_INPUT_SIZE) return 0; /* Unsupported inputSize, too large (or negative) */
    [all...]
lz4hc.c 741 if ((U32)*srcSizePtr > (U32)LZ4_MAX_INPUT_SIZE) return 0; /* Unsupported input size (too large or negative) */
    [all...]
  /external/lz4/programs/
bench.c 473 if (benchedSize > LZ4_MAX_INPUT_SIZE) {
474 benchedSize = LZ4_MAX_INPUT_SIZE;

Completed in 3699 milliseconds