Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/chrono/
DChronoLocalDateTimeImpl.java346 long totNanos = nanos % NANOS_PER_DAY + // max 86400000000000 in plusWithOverflow() local
351 totNanos = totNanos + curNoD; // total 432000000000000 in plusWithOverflow()
352 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
353 long newNoD = Math.floorMod(totNanos, NANOS_PER_DAY); in plusWithOverflow()
/libcore/ojluni/src/main/java/java/time/
DLocalDateTime.java1549 long totNanos = nanos % NANOS_PER_DAY + // max 86400000000000 in plusWithOverflow() local
1554 totNanos = totNanos * sign + curNoD; // total 432000000000000 in plusWithOverflow()
1555 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
1556 long newNoD = Math.floorMod(totNanos, NANOS_PER_DAY); in plusWithOverflow()