Home
last modified time | relevance | path

Searched refs:_mm_roti_epi64 (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/_blake2/impl/
Dblake2b-round.h31 #define _mm_roti_epi64(x, c) \ macro
38 #define _mm_roti_epi64(r, c) _mm_xor_si128(_mm_srli_epi64( (r), -(c) ),_mm_slli_epi64( (r), 64-(-(c… macro
53 row4l = _mm_roti_epi64(row4l, -32); \
54 row4h = _mm_roti_epi64(row4h, -32); \
62 row2l = _mm_roti_epi64(row2l, -24); \
63 row2h = _mm_roti_epi64(row2h, -24); \
72 row4l = _mm_roti_epi64(row4l, -16); \
73 row4h = _mm_roti_epi64(row4h, -16); \
81 row2l = _mm_roti_epi64(row2l, -63); \
82 row2h = _mm_roti_epi64(row2h, -63); \
/external/clang/test/CodeGen/
Dxop-builtins.c236 return _mm_roti_epi64(a, 100); in test_mm_roti_epi64()
/external/clang/lib/Headers/
Dxopintrin.h249 #define _mm_roti_epi64(A, N) __extension__ ({ \ macro