Home
last modified time | relevance | path

Searched refs:HASH_READ_SIZE (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_fast.c24 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillHashTable()
55 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_generic()
H A Dzstd_double_fast.c26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillDoubleHashTable()
65 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_generic()
H A Dzstd_compress_internal.h34 #define HASH_READ_SIZE 8 macro
618 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
H A Dzstd_ldm.c314 BYTE const* const ilimit = iend - MAX(minMatchLength, HASH_READ_SIZE); in ZSTD_ldm_generateSequences_internal()
H A Dzstd_compress.c2202 if (srcSize <= HASH_READ_SIZE) return 0; in ZSTD_loadDictionaryContent()
2216 if (srcSize >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
2217 ZSTD_insertAndFindFirstIndex(ms, cParams, iend-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
2223 if (srcSize >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
2224 ZSTD_updateTree(ms, cParams, iend-HASH_READ_SIZE, iend); in ZSTD_loadDictionaryContent()