Home
last modified time | relevance | path

Searched refs:S43 (Results 1 – 7 of 7) sorted by relevance

/external/syslinux/com32/libutil/
Dmd5.c247 #define S43 15 macro
251 II(c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
255 II(c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
259 II(c, d, a, b, x[6], S43, 0xa3014314); /* 59 */
263 II(c, d, a, b, x[2], S43, 0x2ad7d2bb); /* 63 */
/external/libjpeg-turbo/md5/
Dmd5.c305 #define S43 15 macro
309 II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
313 II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
317 II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */
321 II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */
/external/dng_sdk/source/
Ddng_fingerprint.cpp476 S43 = 15, in MD5Transform() enumerator
568 II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */ in MD5Transform()
572 II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */ in MD5Transform()
576 II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */ in MD5Transform()
580 II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */ in MD5Transform()
/external/syslinux/core/lwip/src/netif/ppp/
Dmd5.c293 #define S43 15 in Transform() macro
297 II ( c, d, a, b, in[14], S43, UL(2878612391)); /* 51 */ in Transform()
301 II ( c, d, a, b, in[10], S43, UL(4293915773)); /* 55 */ in Transform()
305 II ( c, d, a, b, in[ 6], S43, UL(2734768916)); /* 59 */ in Transform()
309 II ( c, d, a, b, in[ 2], S43, UL( 718787259)); /* 63 */ in Transform()
/external/ppp/pppd/
Dmd5.c278 #define S43 15 macro
282 II ( c, d, a, b, in[14], S43, UL(2878612391)); /* 51 */
286 II ( c, d, a, b, in[10], S43, UL(4293915773)); /* 55 */
290 II ( c, d, a, b, in[ 6], S43, UL(2734768916)); /* 59 */
294 II ( c, d, a, b, in[ 2], S43, UL( 718787259)); /* 63 */
/external/clang/test/PCH/
Dcxx-key-functions.cpp51 struct S43 { virtual void f(); }; struct
86 S40, S41, S42, S43, S44, S45, S46, S47, S48, S49,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
DMD5Digest.java180 private static final int S43 = 15; field in MD5Digest
300 c = rotateLeft(c + K(d, a, b) + X[14] + 0xab9423a7, S43) + d; in processBlock()
304 c = rotateLeft(c + K(d, a, b) + X[10] + 0xffeff47d, S43) + d; in processBlock()
308 c = rotateLeft(c + K(d, a, b) + X[ 6] + 0xa3014314, S43) + d; in processBlock()
312 c = rotateLeft(c + K(d, a, b) + X[ 2] + 0x2ad7d2bb, S43) + d; in processBlock()