Home
last modified time | relevance | path

Searched refs:LZ4_memcpy (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/lib/lz4/
H A Dlz4_decompress.c156 LZ4_memcpy(op, ip, endOnInput ? 16 : 8); in LZ4_decompress_generic()
175 LZ4_memcpy(op + 0, match + 0, 8); in LZ4_decompress_generic()
176 LZ4_memcpy(op + 8, match + 8, 8); in LZ4_decompress_generic()
177 LZ4_memcpy(op + 16, match + 16, 2); in LZ4_decompress_generic()
361 LZ4_memcpy(op, dictEnd - copySize, copySize); in LZ4_decompress_generic()
371 LZ4_memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()
397 LZ4_memcpy(op, match, mlen); in LZ4_decompress_generic()
411 LZ4_memcpy(op + 4, match, 4); in LZ4_decompress_generic()
H A Dlz4defs.h150 #define LZ4_memcpy(dst, src, size) __builtin_memcpy(dst, src, size) macro
H A Dlz4_compress.c449 LZ4_memcpy(op, anchor, lastRun); in LZ4_compress_generic()
711 LZ4_memcpy(op, anchor, lastRunSize); in LZ4_compress_destSize_generic()
H A Dlz4hc_compress.c573 LZ4_memcpy(op, anchor, iend - anchor); in LZ4HC_compress_generic()