Searched refs:excessNanos (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | TimeUnit.java | 86 int excessNanos(long d, long m) { return (int)(d - (m*C2)); } in excessNanos() method 101 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); } in excessNanos() method 116 int excessNanos(long d, long m) { return 0; } in excessNanos() method 131 int excessNanos(long d, long m) { return 0; } in excessNanos() method 147 int excessNanos(long d, long m) { return 0; } in excessNanos() method 163 int excessNanos(long d, long m) { return 0; } in excessNanos() method 179 int excessNanos(long d, long m) { return 0; } in excessNanos() method 322 abstract int excessNanos(long d, long m); in excessNanos() method in TimeUnit 352 int ns = excessNanos(timeout, ms); in timedWait() 372 int ns = excessNanos(timeout, ms); in timedJoin() [all …]
|