Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c1195 size_t const restSize = length - copySize; in LZ4_decompress_generic() local
1198 if (restSize > (size_t)(op-lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
1199 BYTE* const endOfMatch = op + restSize; in LZ4_decompress_generic()
1203 memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()
1204 op += restSize; in LZ4_decompress_generic()
/external/lz4/programs/
Dlz4io.c668 size_t const restSize = bufferSize & maskT; in LZ4IO_fwriteSparse() local
669 const char* const restEnd = restStart + restSize; in LZ4IO_fwriteSparse()