Added SIMD code for DCC2

This commit is contained in:
Jens Steube
2016-05-15 01:13:09 +02:00
parent 0ddb264a5a
commit 5987029441
4 changed files with 679 additions and 171 deletions

View File

@@ -33,6 +33,14 @@
#define MD4_Go(x,y,z) (MD4_G((x), (y), (z)))
#endif
#define MD4_STEP_S(f,a,b,c,d,x,K,s) \
{ \
a += K; \
a += x; \
a += f (b, c, d); \
a = rotl32_S (a, s); \
}
#define MD4_STEP(f,a,b,c,d,x,K,s) \
{ \
a += K; \