Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c1814 size_t const restSize = length - copySize; in LZ4_decompress_generic() local
1817 if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
1818 BYTE* const endOfMatch = op + restSize; in LZ4_decompress_generic()
1822 memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()
1823 op += restSize; in LZ4_decompress_generic()
1992 size_t const restSize = length - copySize; in LZ4_decompress_generic() local
1995 if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
1996 BYTE* const endOfMatch = op + restSize; in LZ4_decompress_generic()
2000 memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()
2001 op += restSize; in LZ4_decompress_generic()
/external/lz4/programs/
Dlz4io.c866 size_t const restSize = bufferSize & maskT; in LZ4IO_fwriteSparse() local
867 const char* const restEnd = restStart + restSize; in LZ4IO_fwriteSparse()
/external/zstd/programs/
Dfileio.c1990 size_t const restSize = (size_t)(restEnd - restPtr); in FIO_fwriteSparse() local
1993 if (fwrite(restPtr, 1, restSize, file) != restSize) in FIO_fwriteSparse()