Home
last modified time | relevance | path

Searched refs:C0 (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DTimeUnit.java79 public long toMicros(long d) { return d/(C1/C0); } in toMicros()
80 public long toMillis(long d) { return d/(C2/C0); } in toMillis()
81 public long toSeconds(long d) { return d/(C3/C0); } in toSeconds()
82 public long toMinutes(long d) { return d/(C4/C0); } in toMinutes()
83 public long toHours(long d) { return d/(C5/C0); } in toHours()
84 public long toDays(long d) { return d/(C6/C0); } in toDays()
93 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } in toNanos()
108 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); } in toNanos()
123 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); } in toNanos()
139 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); } in toNanos()
[all …]
/libcore/luni/src/test/java/libcore/java/lang/
DClassCastExceptionTest.java81 …A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0… enumConstant
86 …A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0… enumConstant
/libcore/benchmarks/src/benchmarks/
DImtConflictBenchmark.java35 C0 c0 = new C0(); in setup()
267 C0 c0 = new C0(); in timeConflictDepth01()
786 static class C0 implements I0 {} class in ImtConflictBenchmark