Searched refs:C2 (Results 1 - 7 of 7) sorted by relevance

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DTimeUnit.java47 public long toMillis(long d) { return d/(C2/C0); }
53 int excessNanos(long d, long m) { return (int)(d - (m*C2)); }
59 public long toMillis(long d) { return d/(C2/C1); }
65 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
69 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
70 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); }
72 public long toSeconds(long d) { return d/(C3/C2); }
73 public long toMinutes(long d) { return d/(C4/C2); }
95 static final long C2 = C1 * 1000L; field in class:TimeUnit
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
H A DAESLightEngine.java233 private int C0, C1, C2, C3; field in class:AESLightEngine
334 C2 = (bytes[index++] & 0xff);
335 C2 |= (bytes[index++] & 0xff) << 8;
336 C2 |= (bytes[index++] & 0xff) << 16;
337 C2 |= bytes[index++] << 24;
361 bytes[index++] = (byte)C2;
362 bytes[index++] = (byte)(C2 >> 8);
363 bytes[index++] = (byte)(C2 >> 16);
364 bytes[index++] = (byte)(C2 >> 24);
378 C2
[all...]
H A DAESEngine.java335 private int C0, C1, C2, C3; field in class:AESEngine
436 C2 = (bytes[index++] & 0xff);
437 C2 |= (bytes[index++] & 0xff) << 8;
438 C2 |= (bytes[index++] & 0xff) << 16;
439 C2 |= bytes[index++] << 24;
463 bytes[index++] = (byte)C2;
464 bytes[index++] = (byte)(C2 >> 8);
465 bytes[index++] = (byte)(C2 >> 16);
466 bytes[index++] = (byte)(C2 >> 24);
481 C2
[all...]
H A DAESFastEngine.java666 private int C0, C1, C2, C3; field in class:AESFastEngine
767 C2 = (bytes[index++] & 0xff);
768 C2 |= (bytes[index++] & 0xff) << 8;
769 C2 |= (bytes[index++] & 0xff) << 16;
770 C2 |= bytes[index++] << 24;
794 bytes[index++] = (byte)C2;
795 bytes[index++] = (byte)(C2 >> 8);
796 bytes[index++] = (byte)(C2 >> 16);
797 bytes[index++] = (byte)(C2 >> 24);
811 C2
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DGOFBBlockCipher.java25 static final int C2 = 16843009; //00000001000000010000000100000001 field in class:GOFBBlockCipher
170 N3 += C2;
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectOutputStreamTest.java272 return new C2();
276 private static class C2 implements java.io.Serializable { class in class:ObjectOutputStreamTest.MultipleClassBasedReplacementWhenDumping
H A DSerializationStressTest1.java222 // MultipleClassBasedReplacementWhenDumping -> C1 -> C2 -> C3 -> FOO
227 return new C2();
231 private static class C2 implements java.io.Serializable { class in class:SerializationStressTest1.MultipleClassBasedReplacementWhenDumping

Completed in 89 milliseconds