Home
last modified time | relevance | path

Searched refs:S33 (Results 1 – 8 of 8) sorted by relevance

/external/syslinux/com32/libutil/
Dmd5.c225 #define S33 16 macro
229 HH(c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
233 HH(c, d, a, b, x[7], S33, 0xf6bb4b60); /* 39 */
237 HH(c, d, a, b, x[3], S33, 0xd4ef3085); /* 43 */
241 HH(c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
/external/libjpeg-turbo/md5/
Dmd5.c283 #define S33 16 macro
287 HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
291 HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */
295 HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */
299 HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
/external/dng_sdk/source/
Ddng_fingerprint.cpp472 S33 = 16, in MD5Transform() enumerator
550 HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ in MD5Transform()
554 HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */ in MD5Transform()
558 HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */ in MD5Transform()
562 HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */ in MD5Transform()
/external/syslinux/core/lwip/src/netif/ppp/
Dmd5.c271 #define S33 16 in Transform() macro
275 HH ( c, d, a, b, in[11], S33, UL(1839030562)); /* 35 */ in Transform()
279 HH ( c, d, a, b, in[ 7], S33, UL(4139469664)); /* 39 */ in Transform()
283 HH ( c, d, a, b, in[ 3], S33, UL(3572445317)); /* 43 */ in Transform()
287 HH ( c, d, a, b, in[15], S33, UL( 530742520)); /* 47 */ in Transform()
/external/ppp/pppd/
Dmd5.c256 #define S33 16 macro
260 HH ( c, d, a, b, in[11], S33, UL(1839030562)); /* 35 */
264 HH ( c, d, a, b, in[ 7], S33, UL(4139469664)); /* 39 */
268 HH ( c, d, a, b, in[ 3], S33, UL(3572445317)); /* 43 */
272 HH ( c, d, a, b, in[15], S33, UL( 530742520)); /* 47 */
/external/clang/test/PCH/
Dcxx-key-functions.cpp41 struct S33 { virtual void f(); }; struct
85 S30, S31, S32, S33, S34, S35, S36, S37, S38, S39,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
DMD5Digest.java172 private static final int S33 = 16; field in MD5Digest
280 c = rotateLeft(c + H(d, a, b) + X[11] + 0x6d9d6122, S33) + d; in processBlock()
284 c = rotateLeft(c + H(d, a, b) + X[ 7] + 0xf6bb4b60, S33) + d; in processBlock()
288 c = rotateLeft(c + H(d, a, b) + X[ 3] + 0xd4ef3085, S33) + d; in processBlock()
292 c = rotateLeft(c + H(d, a, b) + X[15] + 0x1fa27cf8, S33) + d; in processBlock()
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-static-initializers.cpp92 static S S33; in MultipleStatics() local