Home
last modified time | relevance | path

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

/openbmc/u-boot/lib/
H A 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()
/openbmc/linux/lib/lz4/
H A Dlz4_decompress.c283 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic()
432 LZ4_wildCopy(op, match, oCopyLimit); in LZ4_decompress_generic()
441 LZ4_wildCopy(op + 8, match + 8, cpy); in LZ4_decompress_generic()
H A Dlz4defs.h172 static FORCE_INLINE void LZ4_wildCopy(void *dstPtr, in LZ4_wildCopy() function
H A Dlz4_compress.c325 LZ4_wildCopy(op, anchor, op + litLength); in LZ4_compress_generic()
631 LZ4_wildCopy(op, anchor, op + litLength); in LZ4_compress_destSize_generic()
H A Dlz4hc_compress.c296 LZ4_wildCopy(*op, *anchor, (*op) + length); in LZ4HC_encodeSequence()