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.java351 long totNanos = nanos % NANOS_PER_DAY + // max 86400000000000 in plusWithOverflow() local
356 totNanos = totNanos + curNoD; // total 432000000000000 in plusWithOverflow()
357 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
358 long newNoD = Math.floorMod(totNanos, NANOS_PER_DAY); in plusWithOverflow()
/libcore/ojluni/src/main/java/java/time/
DLocalDateTime.java1556 long totNanos = nanos % NANOS_PER_DAY + // max 86400000000000 in plusWithOverflow() local
1561 totNanos = totNanos * sign + curNoD; // total 432000000000000 in plusWithOverflow()
1562 totDays += Math.floorDiv(totNanos, NANOS_PER_DAY); in plusWithOverflow()
1563 long newNoD = Math.floorMod(totNanos, NANOS_PER_DAY); in plusWithOverflow()