Searched refs:matchLength (Results 1 - 3 of 3) sorted by relevance

/u-boot/lib/zstd/decompress/
H A Dzstd_decompress_block.c735 size_t matchLength; member in struct:__anon161
867 size_t const sequenceLength = sequence.litLength + sequence.matchLength;
888 if (match + sequence.matchLength <= dictEnd) {
889 ZSTD_memmove(oLitEnd, match, sequence.matchLength);
896 sequence.matchLength -= length1;
900 ZSTD_safecopy(op, oend_w, match, sequence.matchLength, ZSTD_overlap_src_before_dst);
914 size_t const sequenceLength = sequence.litLength + sequence.matchLength;
936 if (match + sequence.matchLength <= dictEnd) {
937 ZSTD_memmove(oLitEnd, match, sequence.matchLength);
944 sequence.matchLength
[all...]
/u-boot/lib/zstd/common/
H A Dzstd_internal.h279 U16 mlBase; /* mlBase == matchLength - MINMATCH */
282 /* Controls whether seqStore has a single "long" litLength or matchLength. See seqStore_t. */
300 /* longLengthPos and longLengthType to allow us to represent either a single litLength or matchLength
302 * the existing value of the litLength or matchLength by 0x10000.
310 U32 matchLength; member in struct:__anon150
315 * indicated by longLengthPos and longLengthType, and adds MINMATCH back to matchLength.
321 seqLen.matchLength = seq->mlBase + MINMATCH;
327 seqLen.matchLength += 0xFFFF;
/u-boot/include/linux/
H A Dzstd_lib.h1159 * If offset == 0 and matchLength == 0, this sequence represents the last
1164 unsigned int matchLength; /* Match length of the sequence. */ member in struct:__anon115
1166 /* Note: Users of this API may provide a sequence with matchLength == litLength == offset == 0.
1360 * with offset == 0, matchLength == 0, and litLength == length of last literals.
1864 * and last literals, which are defined as sequences with offset == 0 and matchLength == 0.

Completed in 141 milliseconds