Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/chrono/
DChronoLocalDateTimeImpl.java342 long totDays = nanos / NANOS_PER_DAY + // max/24*60*60*1B in plusWithOverflow() local
352 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
355 return with(newDate.plus(totDays, ChronoUnit.DAYS), newTime); in plusWithOverflow()
/libcore/ojluni/src/main/java/java/time/
DLocalDateTime.java1544 long totDays = nanos / NANOS_PER_DAY + // max/24*60*60*1B in plusWithOverflow() local
1548 totDays *= sign; // total max*0.4237... in plusWithOverflow()
1555 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
1558 return with(newDate.plusDays(totDays), newTime); in plusWithOverflow()