/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/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
rijndael-alg-fst.c | 43 word32 x32[MAXKC]; member in union:__anon2005 146 word32 x32[4]; member in union:__anon2006 152 word32 x32[4]; member in union:__anon2007 311 word32 x32[4]; member in union:__anon2008 317 word32 x32[4]; member in union:__anon2009
|
/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...] |