Lines Matching refs:x
851 static void streebog_xor(const struct streebog_uint512 *x, in streebog_xor() argument
855 z->qword[0] = x->qword[0] ^ y->qword[0]; in streebog_xor()
856 z->qword[1] = x->qword[1] ^ y->qword[1]; in streebog_xor()
857 z->qword[2] = x->qword[2] ^ y->qword[2]; in streebog_xor()
858 z->qword[3] = x->qword[3] ^ y->qword[3]; in streebog_xor()
859 z->qword[4] = x->qword[4] ^ y->qword[4]; in streebog_xor()
860 z->qword[5] = x->qword[5] ^ y->qword[5]; in streebog_xor()
861 z->qword[6] = x->qword[6] ^ y->qword[6]; in streebog_xor()
862 z->qword[7] = x->qword[7] ^ y->qword[7]; in streebog_xor()
865 static void streebog_xlps(const struct streebog_uint512 *x, in streebog_xlps() argument
872 r0 = le64_to_cpu(x->qword[0] ^ y->qword[0]); in streebog_xlps()
873 r1 = le64_to_cpu(x->qword[1] ^ y->qword[1]); in streebog_xlps()
874 r2 = le64_to_cpu(x->qword[2] ^ y->qword[2]); in streebog_xlps()
875 r3 = le64_to_cpu(x->qword[3] ^ y->qword[3]); in streebog_xlps()
876 r4 = le64_to_cpu(x->qword[4] ^ y->qword[4]); in streebog_xlps()
877 r5 = le64_to_cpu(x->qword[5] ^ y->qword[5]); in streebog_xlps()
878 r6 = le64_to_cpu(x->qword[6] ^ y->qword[6]); in streebog_xlps()
879 r7 = le64_to_cpu(x->qword[7] ^ y->qword[7]); in streebog_xlps()
933 static void streebog_add512(const struct streebog_uint512 *x, in streebog_add512() argument
941 const u64 left = le64_to_cpu(x->qword[i]); in streebog_add512()