Lines Matching refs:lowLimit
142 U32 lowLimit; /* below that point, no more valid data */ member
777 window->lowLimit = end; in ZSTD_window_clear()
787 return window.lowLimit < window.dictLimit; in ZSTD_window_hasExtDict()
862 if (window->lowLimit <= correction) window->lowLimit = 1; in ZSTD_window_correctOverflow()
863 else window->lowLimit -= correction; in ZSTD_window_correctOverflow()
871 assert(window->lowLimit <= newCurrent); in ZSTD_window_correctOverflow()
875 window->lowLimit); in ZSTD_window_correctOverflow()
929 if (window->lowLimit < newLowLimit) window->lowLimit = newLowLimit; in ZSTD_window_enforceMaxDist()
930 if (window->dictLimit < window->lowLimit) { in ZSTD_window_enforceMaxDist()
932 (unsigned)window->dictLimit, (unsigned)window->lowLimit); in ZSTD_window_enforceMaxDist()
933 window->dictLimit = window->lowLimit; in ZSTD_window_enforceMaxDist()
981 window->lowLimit = 1; /* it ensures first and later CCtx usages compress the same */ in ZSTD_window_init()
1007 window->lowLimit = window->dictLimit; in ZSTD_window_update()
1013 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
1018 if ( (ip+srcSize > window->dictBase + window->lowLimit) in ZSTD_window_update()
1022 window->lowLimit = lowLimitMax; in ZSTD_window_update()
1023 DEBUGLOG(5, "Overlapping extDict and input : new lowLimit = %u", window->lowLimit); in ZSTD_window_update()
1034 U32 const lowestValid = ms->window.lowLimit; in ZSTD_getLowestMatchIndex()