Searched refs:src2 (Results 1 – 1 of 1) sorted by relevance
967 void __crypto_xor(u8 *dst, const u8 *src1, const u8 *src2, unsigned int len) in __crypto_xor() argument974 ((unsigned long)dst ^ (unsigned long)src2)) & in __crypto_xor()986 *dst++ = *src1++ ^ *src2++; in __crypto_xor()992 *(u64 *)dst = *(u64 *)src1 ^ *(u64 *)src2; in __crypto_xor()995 src2 += 8; in __crypto_xor()1000 *(u32 *)dst = *(u32 *)src1 ^ *(u32 *)src2; in __crypto_xor()1003 src2 += 4; in __crypto_xor()1008 *(u16 *)dst = *(u16 *)src1 ^ *(u16 *)src2; in __crypto_xor()1011 src2 += 2; in __crypto_xor()1016 *dst++ = *src1++ ^ *src2++; in __crypto_xor()