Home
last modified time | relevance | path

Searched refs:restSize (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zfs/
H A Dlz4.c691 size_t const restSize = length - copySize; in LZ4_decompress_generic() local
694 if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
695 BYTE* const endOfMatch = op + restSize; in LZ4_decompress_generic()
699 LZ4_memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()
700 op += restSize; in LZ4_decompress_generic()
880 size_t const restSize = length - copySize; in LZ4_decompress_generic() local
883 if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
884 BYTE* const endOfMatch = op + restSize; in LZ4_decompress_generic()
888 LZ4_memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()
889 op += restSize; in LZ4_decompress_generic()
/freebsd/sys/contrib/zstd/programs/
H A Dfileio.c2122 size_t const restSize = (size_t)(restEnd - restPtr); in FIO_fwriteSparse() local
2125 if (fwrite(restPtr, 1, restSize, file) != restSize) in FIO_fwriteSparse()