Searched refs:localSecond (Results 1 – 4 of 4) sorted by relevance
413 long localSecond = epochSecond + offset.getTotalSeconds(); // overflow caught later in ofEpochSecond() local414 long localEpochDay = Math.floorDiv(localSecond, SECONDS_PER_DAY); in ofEpochSecond()415 int secsOfDay = (int)Math.floorMod(localSecond, SECONDS_PER_DAY); in ofEpochSecond()
254 … long localSecond = instant.getEpochSecond() + offset.getTotalSeconds(); // overflow caught later in ofInstant() local255 int secsOfDay = (int) Math.floorMod(localSecond, SECONDS_PER_DAY); in ofInstant()
272 … long localSecond = now.getEpochSecond() + offset.getTotalSeconds(); // overflow caught later in now() local273 int secsOfDay = (int) Math.floorMod(localSecond, SECONDS_PER_DAY); in now()
926 long localSecond = epochSecond + offset.getTotalSeconds(); in findYear() local927 long localEpochDay = Math.floorDiv(localSecond, 86400); in findYear()