Searched refs:HASH_READ_SIZE (Results 1 – 5 of 5) sorted by relevance
25 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillHashTable()67 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_generic()223 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_dictMatchState_generic()
26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillDoubleHashTable()70 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_generic()
29 #define HASH_READ_SIZE 8 macro1013 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
3070 if (srcSize <= HASH_READ_SIZE) return 0; in ZSTD_loadDictionaryContent()3072 while (iend - ip > HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()3094 if (chunk >= HASH_READ_SIZE && ms->dedicatedDictSearch) { in ZSTD_loadDictionaryContent()3096 ZSTD_dedicatedDictSearch_lazy_loadDictionary(ms, ichunk-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()3097 } else if (chunk >= HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()3098 ZSTD_insertAndFindFirstIndex(ms, ichunk-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()3106 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()3107 ZSTD_updateTree(ms, ichunk-HASH_READ_SIZE, ichunk); in ZSTD_loadDictionaryContent()
314 BYTE const* const ilimit = iend - HASH_READ_SIZE; in ZSTD_ldm_generateSequences_internal()