Lines Matching refs:lowLimit
148 U32 lowLimit; /* below that point, no more valid data */ member
794 window->lowLimit = end; in ZSTD_window_clear()
804 return window.lowLimit < window.dictLimit; in ZSTD_window_hasExtDict()
879 if (window->lowLimit <= correction) window->lowLimit = 1; in ZSTD_window_correctOverflow()
880 else window->lowLimit -= correction; in ZSTD_window_correctOverflow()
888 assert(window->lowLimit <= newCurrent); in ZSTD_window_correctOverflow()
892 window->lowLimit); in ZSTD_window_correctOverflow()
946 if (window->lowLimit < newLowLimit) window->lowLimit = newLowLimit; in ZSTD_window_enforceMaxDist()
947 if (window->dictLimit < window->lowLimit) { in ZSTD_window_enforceMaxDist()
949 (unsigned)window->dictLimit, (unsigned)window->lowLimit); in ZSTD_window_enforceMaxDist()
950 window->dictLimit = window->lowLimit; in ZSTD_window_enforceMaxDist()
998 window->lowLimit = 1; /* it ensures first and later CCtx usages compress the same */ in ZSTD_window_init()
1024 window->lowLimit = window->dictLimit; in ZSTD_window_update()
1030 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
1035 if ( (ip+srcSize > window->dictBase + window->lowLimit) in ZSTD_window_update()
1039 window->lowLimit = lowLimitMax; in ZSTD_window_update()
1040 DEBUGLOG(5, "Overlapping extDict and input : new lowLimit = %u", window->lowLimit); in ZSTD_window_update()
1051 U32 const lowestValid = ms->window.lowLimit; in ZSTD_getLowestMatchIndex()