Lines Matching defs:LZ4_wildCopy8
147 * gcc on ppc64le generates an unrolled SIMDized loop for LZ4_wildCopy8,
155 * With gcc on ppc64le, all of the LZ4_decompress_* and LZ4_wildCopy8
157 * and also LZ4_wildCopy8 is forcibly inlined, so that the O2 attribute
158 * of LZ4_wildCopy8 does not affect the compression speed.
444 void LZ4_wildCopy8(void* dstPtr, const void* srcPtr, void* dstEnd)
494 LZ4_wildCopy8(dstPtr, srcPtr, dstEnd);
1103 LZ4_wildCopy8(op, anchor, op+litLength);
2227 LZ4_wildCopy8(op, ip, cpy); /* can overwrite up to 8 bytes beyond cpy */
2319 LZ4_wildCopy8(op, match, oCopyLimit);
2326 if (length > 16) { LZ4_wildCopy8(op+8, match+8, cpy); }