Searched refs:LZ4_memcpy (Results 1 – 4 of 4) sorted by relevance
/linux/lib/lz4/ |
A D | lz4_decompress.c | 156 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() 357 LZ4_memcpy(op, dictEnd - copySize, copySize); in LZ4_decompress_generic() 367 LZ4_memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic() 393 LZ4_memcpy(op, match, mlen); in LZ4_decompress_generic() 407 LZ4_memcpy(op + 4, match, 4); in LZ4_decompress_generic()
|
A D | lz4defs.h | 148 #define LZ4_memcpy(dst, src, size) __builtin_memcpy(dst, src, size) macro
|
A D | lz4_compress.c | 449 LZ4_memcpy(op, anchor, lastRun); in LZ4_compress_generic() 711 LZ4_memcpy(op, anchor, lastRunSize); in LZ4_compress_destSize_generic()
|
A D | lz4hc_compress.c | 573 LZ4_memcpy(op, anchor, iend - anchor); in LZ4HC_compress_generic()
|
Completed in 8 milliseconds