Home
last modified time | relevance | path

Searched refs:toHours (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DTimeUnit.java58 public long toHours(long d) { return d/(C5/C0); } in toHours() method
73 public long toHours(long d) { return d/(C5/C1); } in toHours() method
88 public long toHours(long d) { return d/(C5/C2); } in toHours() method
103 public long toHours(long d) { return d/(C5/C3); } in toHours() method
119 public long toHours(long d) { return d/(C5/C4); } in toHours() method
135 public long toHours(long d) { return d; } in toHours() method
137 public long convert(long d, TimeUnit u) { return u.toHours(d); } in convert()
151 public long toHours(long d) { return x(d, C6/C5, MAX/(C6/C5)); } in toHours() method
275 public long toHours(long duration) { in toHours() method in TimeUnit
/libcore/jsr166-tests/src/test/java/jsr166/
DTimeUnitTest.java227 DAYS.toHours(t)); in testToHours()
229 HOURS.toHours(t)); in testToHours()
231 MINUTES.toHours(t*60)); in testToHours()
233 SECONDS.toHours(t*60*60)); in testToHours()
235 MILLISECONDS.toHours(t*1000L*60*60)); in testToHours()
237 MICROSECONDS.toHours(t*1000000L*60*60)); in testToHours()
239 NANOSECONDS.toHours(t*1000000000L*60*60)); in testToHours()