Searched refs:oend_8 (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/contrib/zstd/lib/legacy/ |
H A D | zstd_v04.c | 2875 BYTE* const oend_8 = oend-8; in ZSTD_execSequence() local 2880 …if (oLitEnd > oend_8) return ERROR(dstSize_tooSmall); /* last match must start at a minimum dist… in ZSTD_execSequence() 2908 if (op > oend_8 || sequence.matchLength < MINMATCH) { in ZSTD_execSequence() 2934 if (op < oend_8) in ZSTD_execSequence() 2936 ZSTD_wildcopy(op, match, oend_8 - op); in ZSTD_execSequence() 2937 match += oend_8 - op; in ZSTD_execSequence() 2938 op = oend_8; in ZSTD_execSequence()
|
H A D | zstd_v03.c | 2754 BYTE* const oend_8 = oend-8; in ZSTD_execSequence() local 2758 …if (oLitEnd > oend_8) return ERROR(dstSize_tooSmall); /* last match must start at a minimum dist… in ZSTD_execSequence() 2796 if (op < oend_8) in ZSTD_execSequence() 2798 ZSTD_wildcopy(op, match, oend_8 - op); in ZSTD_execSequence() 2799 match += oend_8 - op; in ZSTD_execSequence() 2800 op = oend_8; in ZSTD_execSequence()
|
H A D | zstd_v02.c | 3113 BYTE* const oend_8 = oend-8; in ZSTD_execSequence() local 3117 …if (oLitEnd > oend_8) return ERROR(dstSize_tooSmall); /* last match must start at a minimum dist… in ZSTD_execSequence() 3155 if (op < oend_8) in ZSTD_execSequence() 3157 ZSTD_wildcopy(op, match, oend_8 - op); in ZSTD_execSequence() 3158 match += oend_8 - op; in ZSTD_execSequence() 3159 op = oend_8; in ZSTD_execSequence()
|
H A D | zstd_v05.c | 3233 BYTE* const oend_8 = oend-8; in ZSTDv05_execSequence() local 3238 …if (oLitEnd > oend_8) return ERROR(dstSize_tooSmall); /* last match must start at a minimum dist… in ZSTDv05_execSequence() 3264 if (op > oend_8 || sequence.matchLength < MINMATCH) { in ZSTDv05_execSequence() 3288 if (op < oend_8) { in ZSTDv05_execSequence() 3289 ZSTDv05_wildcopy(op, match, oend_8 - op); in ZSTDv05_execSequence() 3290 match += oend_8 - op; in ZSTDv05_execSequence() 3291 op = oend_8; in ZSTDv05_execSequence()
|
H A D | zstd_v06.c | 3369 BYTE* const oend_8 = oend-8; in ZSTDv06_execSequence() local 3374 …if (oLitEnd > oend_8) return ERROR(dstSize_tooSmall); /* last match must start at a minimum dist… in ZSTDv06_execSequence() 3398 if (op > oend_8 || sequence.matchLength < MINMATCH) { in ZSTDv06_execSequence() 3424 if (op < oend_8) { in ZSTDv06_execSequence() 3425 ZSTDv06_wildcopy(op, match, oend_8 - op); in ZSTDv06_execSequence() 3426 match += oend_8 - op; in ZSTDv06_execSequence() 3427 op = oend_8; in ZSTDv06_execSequence()
|