Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _ASM_POWERPC_XOR_ALTIVEC_H
0003 #define _ASM_POWERPC_XOR_ALTIVEC_H
0004 
0005 #ifdef CONFIG_ALTIVEC
0006 void xor_altivec_2(unsigned long bytes, unsigned long * __restrict p1,
0007            const unsigned long * __restrict p2);
0008 void xor_altivec_3(unsigned long bytes, unsigned long * __restrict p1,
0009            const unsigned long * __restrict p2,
0010            const unsigned long * __restrict p3);
0011 void xor_altivec_4(unsigned long bytes, unsigned long * __restrict p1,
0012            const unsigned long * __restrict p2,
0013            const unsigned long * __restrict p3,
0014            const unsigned long * __restrict p4);
0015 void xor_altivec_5(unsigned long bytes, unsigned long * __restrict p1,
0016            const unsigned long * __restrict p2,
0017            const unsigned long * __restrict p3,
0018            const unsigned long * __restrict p4,
0019            const unsigned long * __restrict p5);
0020 
0021 #endif
0022 #endif /* _ASM_POWERPC_XOR_ALTIVEC_H */