Home
last modified time | relevance | path

Searched refs:iLitEnd (Results 1 – 3 of 3) sorted by relevance

/external/zstd/lib/decompress/
Dzstd_decompress_block.c772 const BYTE* const iLitEnd = *litPtr + sequence.litLength; in ZSTD_execSequenceEnd() local
785 *litPtr = iLitEnd; in ZSTD_execSequenceEnd()
817 const BYTE* const iLitEnd = *litPtr + sequence.litLength; in ZSTD_execSequence() local
828 iLitEnd > litLimit || in ZSTD_execSequence()
837 assert(iLitEnd <= litLimit /* Literal length is in bounds */); in ZSTD_execSequence()
851 *litPtr = iLitEnd; /* update for next sequence */ in ZSTD_execSequence()
/external/zstd/lib/legacy/
Dzstd_v06.c3374 const BYTE* const iLitEnd = *litPtr + sequence.litLength; in ZSTDv06_execSequence() local
3380 if (iLitEnd > litLimit) return ERROR(corruption_detected); /* over-read beyond lit buffer */ in ZSTDv06_execSequence()
3385 *litPtr = iLitEnd; /* update for next sequence */ in ZSTDv06_execSequence()
Dzstd_v07.c3602 const BYTE* const iLitEnd = *litPtr + sequence.litLength; in ZSTDv07_execSequence() local
3607 if (iLitEnd > litLimit) return ERROR(corruption_detected); /* over-read beyond lit buffer */ in ZSTDv07_execSequence()
3612 *litPtr = iLitEnd; /* update for next sequence */ in ZSTDv07_execSequence()