Home
last modified time | relevance | path

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

/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
DMD5Digest.java154 private static final int S33 = 16; field in MD5Digest
262 c = rotateLeft(c + H(d, a, b) + X[11] + 0x6d9d6122, S33) + d; in processBlock()
266 c = rotateLeft(c + H(d, a, b) + X[ 7] + 0xf6bb4b60, S33) + d; in processBlock()
270 c = rotateLeft(c + H(d, a, b) + X[ 3] + 0xd4ef3085, S33) + d; in processBlock()
274 c = rotateLeft(c + H(d, a, b) + X[15] + 0x1fa27cf8, S33) + d; in processBlock()
/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/v8/test/webkit/fast/js/kde/
Dmd5-1.js169 var S33 = 16; variable
280 c = HH ( c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
284 c = HH ( c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */
288 c = HH ( c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */
292 c = HH ( c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-static-initializers.cpp92 static S S33; in MultipleStatics() local