OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dictStart
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/compress/
zstd_double_fast.c
356
const BYTE* const
dictStart
= dictBase + dictStartIndex;
361
const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd -
dictStart
));
428
if (dictMatchL >
dictStart
&& MEM_read64(dictMatchL) == MEM_read64(ip)) {
431
while (((ip>anchor) & (dictMatchL>
dictStart
)) && (ip[-1] == dictMatchL[-1])) { ip--; dictMatchL--; mLength++; } /* catch up */
446
if (match >
dictStart
&& MEM_read32(match) == MEM_read32(ip)) {
477
if (dictMatchL3 >
dictStart
&& MEM_read64(dictMatchL3) == MEM_read64(ip+1)) {
481
while (((ip>anchor) & (dictMatchL3>
dictStart
)) && (ip[-1] == dictMatchL3[-1])) { ip--; dictMatchL3--; mLength++; } /* catch up */
489
while (((ip>anchor) & (match>
dictStart
)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
633
const BYTE* const
dictStart
= dictBase + dictStartIndex;
672
const BYTE* const lowMatchPtr = matchLongIndex < prefixStartIndex ?
dictStart
: prefixStart
[
all
...]
zstd_fast.c
508
const BYTE* const
dictStart
= dictBase + dictStartIndex;
511
const U32 dictAndPrefixLength = (U32)(istart - prefixStart + dictEnd -
dictStart
);
586
while (((ip0 > anchor) & (dictMatch >
dictStart
))
725
const BYTE* const
dictStart
= dictBase + dictStartIndex;
813
assert((match0 != prefixStart) & (match0 !=
dictStart
));
904
const BYTE* const lowMatchPtr = idx < prefixStartIndex ?
dictStart
: prefixStart;
zstd_ldm.c
356
BYTE const* const
dictStart
= extDict ? dictBase + lowestIndex : NULL;
437
cur->offset < dictLimit ?
dictStart
: lowPrefixPtr;
444
split, anchor, pMatch, lowMatchPtr,
dictStart
, dictEnd);
zstd_lazy.c
1953
const BYTE* const
dictStart
= dictBase + ms->window.lowLimit;
2090
const BYTE* const mStart = (matchIndex < dictLimit) ?
dictStart
: prefixStart;
/src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c
1747
const BYTE* const
dictStart
= (const BYTE*) (dctx->virtualStart);
1796
{ size_t const oneSeqSize = ZSTD_execSequence(op, oend, sequences[(seqNb - ADVANCED_SEQS) & STORED_SEQS_MASK], &litPtr, litBufferEnd, prefixStart,
dictStart
, dictEnd);
1799
ZSTD_assertValidSequence(dctx, op, oend, sequences[(seqNb - ADVANCED_SEQS) & STORED_SEQS_MASK], prefixStart,
dictStart
);
1811
ZSTD_execSequenceSplitLitBuffer(op, oend, litPtr + sequences[(seqNb - ADVANCED_SEQS) & STORED_SEQS_MASK].litLength - WILDCOPY_OVERLENGTH, sequences[(seqNb - ADVANCED_SEQS) & STORED_SEQS_MASK], &litPtr, litBufferEnd, prefixStart,
dictStart
, dictEnd) :
1812
ZSTD_execSequence(op, oend, sequences[(seqNb - ADVANCED_SEQS) & STORED_SEQS_MASK], &litPtr, litBufferEnd, prefixStart,
dictStart
, dictEnd);
1815
ZSTD_assertValidSequence(dctx, op, oend, sequences[(seqNb - ADVANCED_SEQS) & STORED_SEQS_MASK], prefixStart,
dictStart
);
1841
{ size_t const oneSeqSize = ZSTD_execSequence(op, oend, *sequence, &litPtr, litBufferEnd, prefixStart,
dictStart
, dictEnd);
1844
ZSTD_assertValidSequence(dctx, op, oend, sequences[seqNb&STORED_SEQS_MASK], prefixStart,
dictStart
);
1853
ZSTD_execSequenceSplitLitBuffer(op, oend, litPtr + sequence->litLength - WILDCOPY_OVERLENGTH, *sequence, &litPtr, litBufferEnd, prefixStart,
dictStart
, dictEnd) :
1854
ZSTD_execSequence(op, oend, *sequence, &litPtr, litBufferEnd, prefixStart,
dictStart
, dictEnd)
[
all
...]
zstd_decompress.c
1606
const char* const
dictStart
= (const char*)ZSTD_DDict_dictContent(ddict);
1608
const void* const dictEnd =
dictStart
+ dictSize;
/src/external/bsd/zstd/dist/tests/
zstreamtest.c
2696
{ size_t const
dictStart
= FUZ_rand(&lseed) % (srcBufferSize - dictSize);
2697
dict = srcBuffer +
dictStart
;
2977
{ size_t const
dictStart
= FUZ_rand(&lseed) % (srcBufferSize - dictSize);
2978
dict = srcBuffer +
dictStart
;
Completed in 29 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026