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

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
lz4.c 296 #define MINMATCH 4
312 #define MFLIMIT (COPYLENGTH + MINMATCH)
365 #define LZ4_HASH_FUNCTION(i) (((i) * 2654435761U) >> ((MINMATCH * 8) - \
556 ip += MINMATCH;
557 ref += MINMATCH; /* MinMatch verified */
654 #define LZ4_HASH64K_FUNCTION(i) (((i) * 2654435761U) >> ((MINMATCH*8) - \
749 ip += MINMATCH;
750 ref += MINMATCH; /* MinMatch verified *
    [all...]
  /src/external/bsd/zstd/dist/lib/common/
zstd_internal.h 102 #define MINMATCH 3
284 U16 mlBase; /* mlBase == matchLength - MINMATCH */
320 * indicated by longLengthPos and longLengthType, and adds MINMATCH back to matchLength.
326 seqLen.matchLength = seq->mlBase + MINMATCH;
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_lha.c 51 #define MINMATCH 3 /* Minimum match length. */
57 * | 0 ... 255 | MINMATCH ... MAXMATCH |
62 #define LT_BITLEN_SIZE (UCHAR_MAX + 1 + MAXMATCH - MINMATCH + 1)
2395 copy_len = c - (UCHAR_MAX + 1) + MINMATCH;
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1287 #define MINMATCH 4
1706 matchLength += MINMATCH;
1781 if (endMatch > oend-(16-MINMATCH))
zstd_v03.c 2298 #define MINMATCH 4
2672 matchLength += MINMATCH;
2738 if (oMatchEnd > oend-(16-MINMATCH))
zstd_v02.c 2658 #define MINMATCH 4
3032 matchLength += MINMATCH;
3099 if (oMatchEnd > oend-(16-MINMATCH))
zstd_v04.c 309 #define MINMATCH 4
2799 matchLength += MINMATCH;
2858 if (op > oend_8 || sequence.matchLength < MINMATCH) {
2882 if (oMatchEnd > oend-(16-MINMATCH))
zstd_v05.c 414 #define MINMATCH 4
3152 matchLength += MINMATCH;
3218 if (op > oend_8 || sequence.matchLength < MINMATCH) {
3241 if (oMatchEnd > oend-(16-MINMATCH)) {
zstd_v06.c 435 #define MINMATCH 3
2830 bit 4 : minmatch 4(0) or 3(1)
3290 seq->matchLength = ML_base[mlCode] + MINMATCH + ((mlCode>31) ? BITv06_readBits(&(seqState->DStream), mlBits) : 0); /* <= 16 bits */
3348 if (op > oend_8 || sequence.matchLength < MINMATCH) {
3373 if (oMatchEnd > oend-(16-MINMATCH)) {
zstd_v07.c 2670 #define MINMATCH 3
3573 if (op > oend_w || sequence.matchLength < MINMATCH) {
3598 if (oMatchEnd > oend-(16-MINMATCH)) {

Completed in 40 milliseconds