Lines Matching refs:y
29 * vector register y left by 1 bit and stores the result in
32 static inline void SHLBYTE(int x, int y)
34 asm volatile ("VAB %0,%1,%1" : : "i" (x), "i" (y));
38 * For each of the 16 bytes in the vector register y the MASK()
43 static inline void MASK(int x, int y)
45 asm volatile ("VESRAVB %0,%1,24" : : "i" (x), "i" (y));
48 static inline void AND(int x, int y, int z)
50 asm volatile ("VN %0,%1,%2" : : "i" (x), "i" (y), "i" (z));
53 static inline void XOR(int x, int y, int z)
55 asm volatile ("VX %0,%1,%2" : : "i" (x), "i" (y), "i" (z));
76 static inline void COPY_VEC(int x, int y)
78 asm volatile ("VLR %0,%1" : : "i" (x), "i" (y));