HomeSort by: relevance | last modified time | path
    Searched defs:iLitEnd (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 914 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
927 *litPtr = iLitEnd;
962 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
976 *litPtr = iLitEnd;
1010 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
1026 iLitEnd > litLimit ||
1035 assert(iLitEnd <= litLimit /* Literal length is in bounds */);
1049 *litPtr = iLitEnd; /* update for next sequence */
1108 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
1119 iLitEnd > litLimit |
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v06.c 3314 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
3326 if (iLitEnd > litLimit) return ERROR(corruption_detected); /* overRead beyond lit buffer */
3331 *litPtr = iLitEnd; /* update for next sequence */
zstd_v07.c 3543 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
3556 *litPtr = iLitEnd; /* update for next sequence */

Completed in 26 milliseconds