Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c1573 size_t const restSize = length - copySize; in LZ4_decompress_generic() local
1576 if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
1577 BYTE* const endOfMatch = op + restSize; in LZ4_decompress_generic()
1581 memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()
1582 op += restSize; in LZ4_decompress_generic()
/external/lz4/programs/
Dlz4io.c773 size_t const restSize = bufferSize & maskT; in LZ4IO_fwriteSparse() local
774 const char* const restEnd = restStart + restSize; in LZ4IO_fwriteSparse()