Searched refs:ZSTD_REP_MOVE (Results 1 - 3 of 3) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress_internal.h | 568 #define ZSTD_REP_MOVE (ZSTD_REP_NUM-1) macro 573 #define STORE_OFFSET(o) (assert((o)>0), o + ZSTD_REP_MOVE) 574 #define STORED_IS_OFFSET(o) ((o) > ZSTD_REP_MOVE) 575 #define STORED_IS_REPCODE(o) ((o) <= ZSTD_REP_MOVE) 576 #define STORED_OFFSET(o) (assert(STORED_IS_OFFSET(o)), (o)-ZSTD_REP_MOVE)
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | zstd_internal.h | 66 #define ZSTD_REP_MOVE (ZSTD_REP_NUM - 1) macro
|
H A D | compress.c | 1063 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_fast_generic() 1172 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_fast_extDict_generic() 1339 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_generic() 1455 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_extDict_generic() 1488 ZSTD_storeSeq(seqStorePtr, ip - anchor, anchor, offset + ZSTD_REP_MOVE, mLength - MINMATCH); in ZSTD_compressBlock_doubleFast_extDict_generic() 1690 bestLength = matchLength, *offsetPtr = ZSTD_REP_MOVE + curr - matchIndex; in ZSTD_insertBtAndFindBestMatch() 1856 *offsetPtr = curr - matchIndex + ZSTD_REP_MOVE; in ZSTD_HcFindBestMatch_generic() 1999 * start[-offset+ZSTD_REP_MOVE-1] is undefined behavior. in ZSTD_compressBlock_lazy_generic() 2000 * (-offset+ZSTD_REP_MOVE-1) is unsigned, and is added to start, which in ZSTD_compressBlock_lazy_generic() 2005 while ((start > anchor) && (start > base + offset - ZSTD_REP_MOVE) in ZSTD_compressBlock_lazy_generic() [all...] |
Completed in 9 milliseconds