/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
RC2Engine.java | 27 (byte)0x61, (byte)0x45, (byte)0x6d, (byte)0x8d, (byte)0x9, (byte)0x81, (byte)0x7d, (byte)0x32, 210 int x76, x54, x32, x10; local 214 x32 = ((in[inOff + 3] & 0xff) << 8) + (in[inOff + 2] & 0xff); 219 x10 = rotateWordLeft(x10 + (x32 & ~x76) + (x54 & x76) + workingKey[i ], 1); 220 x32 = rotateWordLeft(x32 + (x54 & ~x10) + (x76 & x10) + workingKey[i+1], 2); 221 x54 = rotateWordLeft(x54 + (x76 & ~x32) + (x10 & x32) + workingKey[i+2], 3); 222 x76 = rotateWordLeft(x76 + (x10 & ~x54) + (x32 & x54) + workingKey[i+3], 5); 226 x32 += workingKey[x10 & 63] 267 int x76, x54, x32, x10; local [all...] |
/external/dropbear/libtomcrypt/src/ciphers/ |
rc2.c | 141 unsigned x76, x54, x32, x10, i; local 151 x32 = ((unsigned)pt[3] << 8) + (unsigned)pt[2]; 155 x10 = (x10 + (x32 & ~x76) + (x54 & x76) + xkey[4*i+0]) & 0xFFFF; 158 x32 = (x32 + (x54 & ~x10) + (x76 & x10) + xkey[4*i+1]) & 0xFFFF; 159 x32 = ((x32 << 2) | (x32 >> 14)); 161 x54 = (x54 + (x76 & ~x32) + (x10 & x32) + xkey[4*i+2]) & 0xFFFF 218 unsigned x76, x54, x32, x10; local [all...] |
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
rijndael-alg-fst.c | 43 word32 x32[MAXKC]; member in union:__anon21214 146 word32 x32[4]; member in union:__anon21215 152 word32 x32[4]; member in union:__anon21216 311 word32 x32[4]; member in union:__anon21217 317 word32 x32[4]; member in union:__anon21218
|
/bionic/libc/bionic/ |
md5.c | 201 struct x32{ struct 227 struct x32 *u = (struct x32*)m->save;
|
/external/flac/libFLAC/ |
bitreader.c | 548 FLAC__uint32 x8, x32 = 0; local 552 if(!FLAC__bitreader_read_raw_uint32(br, &x32, 8)) 557 x32 |= (x8 << 8); 561 x32 |= (x8 << 16); 565 x32 |= (x8 << 24); 567 *val = x32; [all...] |