Lines Matching refs:loadedDictEnd
148 U32 loadedDictEnd; /* index of end of dictionary, within context's referential. member
192 U32 loadedDictEnd; member
910 U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; in ZSTD_window_enforceMaxDist() local
912 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist()
927 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist()
957 U32 const loadedDictEnd = *loadedDictEndPtr; in ZSTD_checkDictValidity() local
959 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_checkDictValidity()
960 assert(blockEndIdx >= loadedDictEnd); in ZSTD_checkDictValidity()
962 if (blockEndIdx > loadedDictEnd + maxDist) { in ZSTD_checkDictValidity()
1036 U32 const isDictionary = (ms->loadedDictEnd != 0); in ZSTD_getLowestMatchIndex()
1053 U32 const isDictionary = (ms->loadedDictEnd != 0); in ZSTD_getLowestPrefixIndex()