Searched refs:LZ4_memcpy (Results 1 – 4 of 4) sorted by relevance
/lib/lz4/ |
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() 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()
|
D | lz4defs.h | 148 #define LZ4_memcpy(dst, src, size) __builtin_memcpy(dst, src, size) macro
|
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()
|
D | lz4hc_compress.c | 573 LZ4_memcpy(op, anchor, iend - anchor); in LZ4HC_compress_generic()
|