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

  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz4/
BlockLZ4CompressorOutputStream.java 455 int litLength = literalLength();
456 out.write(lengths(litLength, brLength));
457 if (litLength >= BlockLZ4CompressorInputStream.BACK_REFERENCE_SIZE_MASK) {
458 writeLength(litLength - BlockLZ4CompressorInputStream.BACK_REFERENCE_SIZE_MASK, out);
479 private static int lengths(int litLength, int brLength) {
480 int l = litLength < 15 ? litLength : 15;
  /external/lz4/lib/
lz4.c     [all...]
lz4hc.c 659 size_t litLength = (lastRunSize + 255 - RUN_MASK) / 255;
660 size_t const totalSize = 1 + litLength + lastRunSize;
666 litLength = (lastRunSize + 255 - RUN_MASK) / 255;
667 lastRunSize -= litLength;
    [all...]

Completed in 279 milliseconds