HomeSort by: relevance | last modified time | path
    Searched defs:mLength (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 184 size_t mLength;
235 mLength = ip0[-1] == match0[-1];
236 ip0 -= mLength;
237 match0 -= mLength;
239 mLength += 4;
368 mLength = 4;
374 mLength++;
380 mLength += ZSTD_count(ip0 + mLength, match0 + mLength, iend)
    [all...]
zstd_ldm.c 388 bestMatchLength = 0, mLength;
458 mLength = forwardMatchLength + backwardMatchLength;
466 seq->matchLength = (U32)mLength;
zstd_double_fast.c 126 size_t mLength;
186 mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4;
188 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, REPCODE1_TO_OFFBASE, mLength);
197 mLength = ZSTD_count(ip+8, matchl0+8, iend) + 8;
199 while (((ip>anchor) & (matchl0>prefixLowest)) && (ip[-1] == matchl0[-1])) { ip--; matchl0--; mLength++; } /* catch up */
249 mLength = ZSTD_count(ip+8, matchl1+8, iend) + 8;
251 while (((ip>anchor) & (matchl1>prefixLowest)) && (ip[-1] == matchl1[-1])) { ip--; matchl1--; mLength++; } /* catch up */
257 mLength = ZSTD_count(ip+4, matchs0+4, iend) + 4;
259 while (((ip>anchor) & (matchs0>prefixLowest)) && (ip[-1] == matchs0[-1])) { ip--; matchs0--; mLength++; } /* catch up */
263 _match_found: /* requires ip, offset, mLength */
    [all...]

Completed in 26 milliseconds