Searched defs:F1 (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/checksum/
H A Dalt-md5.cpp63 /* The four core functions - F1 is optimized somewhat */
65 /* #define F1(x, y, z) (x & y | ~x & z) */
66 # define F1(x, y, z) (z ^ (x & (y ^ z))) macro
67 # define F2(x, y, z) F1(z, x, y)
70 #else /* gcc 4.0.1 (x86) benefits from the explicitness of F1() here. */
71 DECL_FORCE_INLINE(uint32_t) F1(uint32_t x, uint32_t y, uint32_t z) function
78 # define F2(x, y, z) F1(z, x, y)
114 MD5STEP(F1, a, b, c, d, in[ 0] + 0xd76aa478, 7);
115 MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12);
116 MD5STEP(F1,
[all...]

Completed in 33 milliseconds