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

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DTimeUnit.java46 public long toMicros(long d) { return d/(C1/C0); }
57 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
59 public long toMillis(long d) { return d/(C2/C1); }
60 public long toSeconds(long d) { return d/(C3/C1); }
61 public long toMinutes(long d) { return d/(C4/C1); }
62 public long toHours(long d) { return d/(C5/C1); }
63 public long toDays(long d) { return d/(C6/C1); }
65 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
70 public long toMicros(long d) { return x(d, C2/C1, MA
94 static final long C1 = C0 * 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
329 C1 = (bytes[index++] & 0xff);
330 C1 |= (bytes[index++] & 0xff) << 8;
331 C1 |= (bytes[index++] & 0xff) << 16;
332 C1 |= bytes[index++] << 24;
356 bytes[index++] = (byte)C1;
357 bytes[index++] = (byte)(C1 >> 8);
358 bytes[index++] = (byte)(C1 >> 16);
359 bytes[index++] = (byte)(C1 >> 24);
377 C1
[all...]
H A DAESEngine.java335 private int C0, C1, C2, C3; field in class:AESEngine
431 C1 = (bytes[index++] & 0xff);
432 C1 |= (bytes[index++] & 0xff) << 8;
433 C1 |= (bytes[index++] & 0xff) << 16;
434 C1 |= bytes[index++] << 24;
458 bytes[index++] = (byte)C1;
459 bytes[index++] = (byte)(C1 >> 8);
460 bytes[index++] = (byte)(C1 >> 16);
461 bytes[index++] = (byte)(C1 >> 24);
480 C1
[all...]
H A DAESFastEngine.java666 private int C0, C1, C2, C3; field in class:AESFastEngine
762 C1 = (bytes[index++] & 0xff);
763 C1 |= (bytes[index++] & 0xff) << 8;
764 C1 |= (bytes[index++] & 0xff) << 16;
765 C1 |= bytes[index++] << 24;
789 bytes[index++] = (byte)C1;
790 bytes[index++] = (byte)(C1 >> 8);
791 bytes[index++] = (byte)(C1 >> 16);
792 bytes[index++] = (byte)(C1 >> 24);
810 C1
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DGOFBBlockCipher.java24 static final int C1 = 16843012; //00000001000000010000000100000100 field in class:GOFBBlockCipher
171 N4 += C1;
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectOutputStreamTest.java270 private static class C1 implements java.io.Serializable { class in class:ObjectOutputStreamTest.MultipleClassBasedReplacementWhenDumping
293 return new C1();
H A DSerializationStressTest1.java222 // MultipleClassBasedReplacementWhenDumping -> C1 -> C2 -> C3 -> FOO
225 private static class C1 implements java.io.Serializable { class in class:SerializationStressTest1.MultipleClassBasedReplacementWhenDumping
248 return new C1();

Completed in 282 milliseconds