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.java347 long totDays = nanos / NANOS_PER_DAY + // max/24*60*60*1B in plusWithOverflow() local
357 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
360 return with(newDate.plus(totDays, ChronoUnit.DAYS), newTime); in plusWithOverflow()
/libcore/ojluni/src/main/java/java/time/
DLocalDateTime.java1551 long totDays = nanos / NANOS_PER_DAY + // max/24*60*60*1B in plusWithOverflow() local
1555 totDays *= sign; // total max*0.4237... in plusWithOverflow()
1562 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
1565 return with(newDate.plusDays(totDays), newTime); in plusWithOverflow()