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

/u-boot/lib/zstd/common/
H A Dzstd_internal.h278 U16 litLength; member in struct:seqDef_s
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.
309 U32 litLength; member in struct:__anon150
320 seqLen.litLength = seq->litLength;
324 seqLen.litLength += 0xFFFF;
/u-boot/lib/zstd/decompress/
H A Dzstd_decompress_block.c734 size_t litLength; member in struct:__anon161
866 BYTE* const oLitEnd = op + sequence.litLength;
867 size_t const sequenceLength = sequence.litLength + sequence.matchLength;
868 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
874 RETURN_ERROR_IF(sequence.litLength > (size_t)(litLimit - *litPtr), corruption_detected, "try to read beyond literal buffer");
879 ZSTD_safecopy(op, oend_w, *litPtr, sequence.litLength, ZSTD_no_overlap);
913 BYTE* const oLitEnd = op + sequence.litLength;
914 size_t const sequenceLength = sequence.litLength + sequence.matchLength;
915 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
921 RETURN_ERROR_IF(sequence.litLength > (size_
[all...]
/u-boot/include/linux/
H A Dzstd_lib.h1160 * literals in the block of litLength size.
1163 unsigned int litLength; /* Literal length of the sequence. */ member in struct:__anon115
1166 /* Note: Users of this API may provide a sequence with matchLength == litLength == offset == 0.
1178 * If litLength != 0:
1182 * If litLength == 0:
1360 * with offset == 0, matchLength == 0, and litLength == length of last literals.
1361 * litLength may be == 0, and if so, then the sequence of (of: 0 ml: 0 ll: 0)

Completed in 114 milliseconds