Home
last modified time | relevance | path

Searched refs:ROTR32 (Results 1 – 2 of 2) sorted by relevance

/php-src/ext/hash/
H A Dhash_sha.c113 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) macro
122 #define SHA256_F2(x) (ROTR32( 2,(x)) ^ ROTR32(13,(x)) ^ ROTR32(22,(x)))
124 #define SHA256_F3(x) (ROTR32( 6,(x)) ^ ROTR32(11,(x)) ^ ROTR32(25,(x)))
126 #define SHA256_F4(x) (ROTR32( 7,(x)) ^ ROTR32(18,(x)) ^ SHR( 3,(x)))
128 #define SHA256_F5(x) (ROTR32(17,(x)) ^ ROTR32(19,(x)) ^ SHR(10,(x)))
H A Dhash_sha_sse2.c99 #define ROTR32(x, n) (_mm_or_si128(SHR32(x, n), _mm_slli_epi32(x, (32-n)))) macro
101 ROTR32(x, 7), ROTR32(x, 18)), SHR32(x, 3))

Completed in 10 milliseconds