Searched refs:nos (Results 1 – 3 of 3) sorted by relevance
242 int nos = (int) Math.floorMod(nanoAdjustment, NANOS_PER_SECOND); in ofSeconds() local243 return create(secs, nos); in ofSeconds()276 int nos = (int) (nanos % NANOS_PER_SECOND); in ofNanos() local277 if (nos < 0) { in ofNanos()278 nos += NANOS_PER_SECOND; in ofNanos()281 return create(secs, nos); in ofNanos()
323 int nos = (int)Math.floorMod(nanoAdjustment, NANOS_PER_SECOND); in ofEpochSecond() local324 return create(secs, nos); in ofEpochSecond()
163 private void check(Instant instant, long epochSecs, int nos) { in check() argument165 assertEquals(instant.getNano(), nos); in check() local