HomeSort by relevance Sort by last modified time
    Searched defs:x54 (Results 1 - 3 of 3) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RC2Engine.java 30 (byte)0x54, (byte)0xd6, (byte)0x65, (byte)0x93, (byte)0xce, (byte)0x60, (byte)0xb2, (byte)0x1c,
210 int x76, x54, x32, x10; local
213 x54 = ((in[inOff + 5] & 0xff) << 8) + (in[inOff + 4] & 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);
227 x54 += workingKey[x32 & 63]
267 int x76, x54, x32, x10; local
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/
rc2.c 141 unsigned x76, x54, x32, x10, i; local
150 x54 = ((unsigned)pt[5] << 8) + (unsigned)pt[4];
155 x10 = (x10 + (x32 & ~x76) + (x54 & x76) + xkey[4*i+0]) & 0xFFFF;
158 x32 = (x32 + (x54 & ~x10) + (x76 & x10) + xkey[4*i+1]) & 0xFFFF;
161 x54 = (x54 + (x76 & ~x32) + (x10 & x32) + xkey[4*i+2]) & 0xFFFF;
162 x54 = ((x54 << 3) | (x54 >> 13));
164 x76 = (x76 + (x10 & ~x54) + (x32 & x54) + xkey[4*i+3]) & 0xFFFF
218 unsigned x76, x54, x32, x10; local
    [all...]
  /external/clang/test/CodeGen/
x86_64-arguments.c 430 __m256 x54; variable
432 test54_helper(x54, x54, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0i);
433 test54_helper(x54, x54, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0i);

Completed in 70 milliseconds