Lines Matching refs:lastLLSize

1590         size_t const lastLLSize = (size_t)(litBufferEnd - litPtr);  in ZSTD_decompressSequences_bodySplitLitBuffer()  local
1591 DEBUGLOG(6, "copy last literals from segment : %u", (U32)lastLLSize); in ZSTD_decompressSequences_bodySplitLitBuffer()
1592 RETURN_ERROR_IF(lastLLSize > (size_t)(oend - op), dstSize_tooSmall, ""); in ZSTD_decompressSequences_bodySplitLitBuffer()
1594 ZSTD_memmove(op, litPtr, lastLLSize); in ZSTD_decompressSequences_bodySplitLitBuffer()
1595 op += lastLLSize; in ZSTD_decompressSequences_bodySplitLitBuffer()
1602 { size_t const lastLLSize = (size_t)(litBufferEnd - litPtr); in ZSTD_decompressSequences_bodySplitLitBuffer() local
1603 DEBUGLOG(6, "copy last literals from internal buffer : %u", (U32)lastLLSize); in ZSTD_decompressSequences_bodySplitLitBuffer()
1604 RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); in ZSTD_decompressSequences_bodySplitLitBuffer()
1606 ZSTD_memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences_bodySplitLitBuffer()
1607 op += lastLLSize; in ZSTD_decompressSequences_bodySplitLitBuffer()
1681 { size_t const lastLLSize = (size_t)(litEnd - litPtr); in ZSTD_decompressSequences_body() local
1682 DEBUGLOG(6, "copy last literals : %u", (U32)lastLLSize); in ZSTD_decompressSequences_body()
1683 RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); in ZSTD_decompressSequences_body()
1685 ZSTD_memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences_body()
1686 op += lastLLSize; in ZSTD_decompressSequences_body()
1871 size_t const lastLLSize = litBufferEnd - litPtr; in ZSTD_decompressSequencesLong_body() local
1872 RETURN_ERROR_IF(lastLLSize > (size_t)(oend - op), dstSize_tooSmall, ""); in ZSTD_decompressSequencesLong_body()
1874 ZSTD_memmove(op, litPtr, lastLLSize); in ZSTD_decompressSequencesLong_body()
1875 op += lastLLSize; in ZSTD_decompressSequencesLong_body()
1880 { size_t const lastLLSize = litBufferEnd - litPtr; in ZSTD_decompressSequencesLong_body() local
1881 RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); in ZSTD_decompressSequencesLong_body()
1883 ZSTD_memmove(op, litPtr, lastLLSize); in ZSTD_decompressSequencesLong_body()
1884 op += lastLLSize; in ZSTD_decompressSequencesLong_body()