Lines Matching refs:size
14 void __crypto_xor(u8 *dst, const u8 *src1, const u8 *src2, unsigned int size);
16 static inline void crypto_xor(u8 *dst, const u8 *src, unsigned int size) in crypto_xor() argument
19 __builtin_constant_p(size) && in crypto_xor()
20 (size % sizeof(unsigned long)) == 0) { in crypto_xor()
25 while (size > 0) { in crypto_xor()
28 size -= sizeof(unsigned long); in crypto_xor()
31 __crypto_xor(dst, dst, src, size); in crypto_xor()
36 unsigned int size) in crypto_xor_cpy() argument
39 __builtin_constant_p(size) && in crypto_xor_cpy()
40 (size % sizeof(unsigned long)) == 0) { in crypto_xor_cpy()
46 while (size > 0) { in crypto_xor_cpy()
49 size -= sizeof(unsigned long); in crypto_xor_cpy()
52 __crypto_xor(dst, src1, src2, size); in crypto_xor_cpy()
56 noinline unsigned long __crypto_memneq(const void *a, const void *b, size_t size);
68 static inline int crypto_memneq(const void *a, const void *b, size_t size) in crypto_memneq() argument
70 return __crypto_memneq(a, b, size) != 0UL ? 1 : 0; in crypto_memneq()