Home
last modified time | relevance | path

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

/external/u-boot/lib/
Dlz4.c17 static void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy() function
148 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic()
222 LZ4_wildCopy(op, match, oend-8); in LZ4_decompress_generic()
229 LZ4_wildCopy(op, match, cpy); in LZ4_decompress_generic()
/external/lz4/lib/
Dlz4.c284 void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy() function
831 LZ4_wildCopy(op, anchor, op+litLength); in LZ4_compress_generic()
1529 LZ4_wildCopy(op, ip, cpy); /* may overwrite up to WILDCOPYLENGTH beyond cpy */ in LZ4_decompress_generic()
1624 LZ4_wildCopy(op, match, oCopyLimit); in LZ4_decompress_generic()
1631 if (length > 16) LZ4_wildCopy(op+8, match+8, cpy); in LZ4_decompress_generic()
Dlz4hc.c451 LZ4_wildCopy(*op, *anchor, (*op) + length); in LZ4HC_encodeSequence()