OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:loadedDictEnd
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/compress/
zstd_compress_internal.h
274
U32
loadedDictEnd
; /* index of end of dictionary, within context's referential.
275
* When
loadedDictEnd
!= 0, a dictionary is in use, and still valid.
276
* This relies on a mechanism to set
loadedDictEnd
=0 when dictionary is no longer within distance.
279
*
loadedDictEnd
== dictSize, since referential starts from zero.
340
U32
loadedDictEnd
;
1100
U32
loadedDictEnd
,
1122
U32 const dictionaryInvalidated = curr > maxDist +
loadedDictEnd
;
1135
U32
loadedDictEnd
,
1141
if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist,
loadedDictEnd
, src)) {
1235
* (srcEnd - base) - lowLimit == maxDist +
loadedDictEnd
[
all
...]
zstd_ldm.c
559
if (ZSTD_window_needOverflowCorrection(ldmState->window, 0, maxDist, ldmState->
loadedDictEnd
, chunkStart, chunkEnd)) {
565
ldmState->
loadedDictEnd
= 0;
581
ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->
loadedDictEnd
, NULL);
zstd_compress.c
1938
ms->
loadedDictEnd
= 0;
2231
zc->ldmState.
loadedDictEnd
= 0;
2373
/*
loadedDictEnd
is expressed within the referential of the active context */
2374
cctx->blockState.matchState.
loadedDictEnd
= cctx->blockState.matchState.window.dictLimit;
2472
dstMatchState->
loadedDictEnd
= srcMatchState->
loadedDictEnd
;
2575
dstMatchState->
loadedDictEnd
= srcMatchState->
loadedDictEnd
;
3289
assert(ms->dictMatchState == NULL || ms->
loadedDictEnd
== ms->window.dictLimit);
4534
if (ZSTD_window_needOverflowCorrection(ms->window, cycleLog, maxDist, ms->
loadedDictEnd
, ip, iend))
[
all
...]
zstdmt_compress.c
537
serialState->ldmState.
loadedDictEnd
= 0;
543
serialState->ldmState.
loadedDictEnd
= params.forceWindow ? 0 : (U32)(dictEnd - serialState->ldmState.window.base);
zstd_lazy.c
686
const U32 isDictionary = (ms->
loadedDictEnd
!= 0);
1162
const U32 isDictionary = (ms->
loadedDictEnd
!= 0);
Completed in 30 milliseconds
Indexes created Thu Jun 18 00:24:58 UTC 2026