HomeSort by: relevance | last modified time | path
    Searched refs:longLengthPos (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress_internal.h 109 /* longLengthPos and longLengthType to allow us to represent either a single litLength or matchLength
114 U32 longLengthPos; /* Index of the sequence to apply long length modification to */
124 * indicated by longLengthPos and longLengthType, and adds MINMATCH back to matchLength.
131 if (seqStore->longLengthPos == (U32)(seq - seqStore->sequencesStart)) {
747 seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
761 seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
zstd_compress.c 2715 llCodeTable[seqStorePtr->longLengthPos] = MaxLL;
2717 mlCodeTable[seqStorePtr->longLengthPos] = MaxML;
3461 if (i == seqStore->longLengthPos) {
3977 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_literalLength) {
3992 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_matchLength) {
4011 /* Move longLengthPos into the correct position if necessary */
4013 if (originalSeqStore->longLengthPos < startIdx || originalSeqStore->longLengthPos > endIdx) {
4016 resultSeqStore->longLengthPos -= (U32)startIdx;
4074 U32 const longLitLenIdx = seqStore->longLengthType == ZSTD_llt_literalLength ? seqStore->longLengthPos : nbSeq
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v06.c 532 U32 longLengthPos;
zstd_v07.c 2767 U32 longLengthPos;

Completed in 32 milliseconds