Lines Matching refs:lowLimit

195     U32 lowLimit;              /* below that point, no more valid data */  member
959 window->lowLimit = end; in ZSTD_window_clear()
966 window.lowLimit == ZSTD_WINDOW_START_INDEX && in ZSTD_window_isEmpty()
976 return window.lowLimit < window.dictLimit; in ZSTD_window_hasExtDict()
1118 if (window->lowLimit < correction + ZSTD_WINDOW_START_INDEX) { in ZSTD_window_correctOverflow()
1119 window->lowLimit = ZSTD_WINDOW_START_INDEX; in ZSTD_window_correctOverflow()
1121 window->lowLimit -= correction; in ZSTD_window_correctOverflow()
1133 assert(window->lowLimit <= newCurrent); in ZSTD_window_correctOverflow()
1139 window->lowLimit); in ZSTD_window_correctOverflow()
1193 if (window->lowLimit < newLowLimit) window->lowLimit = newLowLimit; in ZSTD_window_enforceMaxDist()
1194 if (window->dictLimit < window->lowLimit) { in ZSTD_window_enforceMaxDist()
1196 (unsigned)window->dictLimit, (unsigned)window->lowLimit); in ZSTD_window_enforceMaxDist()
1197 window->dictLimit = window->lowLimit; in ZSTD_window_enforceMaxDist()
1246 …window->lowLimit = ZSTD_WINDOW_START_INDEX; /* it ensures first and later CCtx usages compress… in ZSTD_window_init()
1274 window->lowLimit = window->dictLimit; in ZSTD_window_update()
1280 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
1285 if ( (ip+srcSize > window->dictBase + window->lowLimit) in ZSTD_window_update()
1289 window->lowLimit = lowLimitMax; in ZSTD_window_update()
1290 DEBUGLOG(5, "Overlapping extDict and input : new lowLimit = %u", window->lowLimit); in ZSTD_window_update()
1301 U32 const lowestValid = ms->window.lowLimit; in ZSTD_getLowestMatchIndex()