Lines Matching refs:src
70 vec_t src; in clmul_test() local
75 src = (vec_t)raw; in clmul_test()
83 y = clmul_ll(src, x); in clmul_test()
91 touch(src); in clmul_test()
92 y = clmul_ll(x, src); in clmul_test()
93 touch(src); in clmul_test()
94 z = clmul_lh(x, src); in clmul_test()
95 touch(src); in clmul_test()
100 if ( !eq(y, src) ) return __LINE__; in clmul_test()
109 x = src; in clmul_test()
110 touch(src); in clmul_test()
111 y = clmul_lh(x, src); in clmul_test()
112 touch(src); in clmul_test()
113 z = clmul_hl(x, src); in clmul_test()
117 touch(src); in clmul_test()
118 y = lo = clmul_ll(x, src); in clmul_test()
119 touch(src); in clmul_test()
120 z = hi = clmul_hh(x, src); in clmul_test()
121 touch(src); in clmul_test()
132 x = src >> j; in clmul_test()
146 src += 0x0101010101010101ULL * VEC_SIZE; in clmul_test()