Searched refs:localSecond (Results 1 – 3 of 3) 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()
358 long localSecond = instant.getEpochSecond() + offset.getTotalSeconds(); in ofInstant() local359 int secsOfDay = Math.floorMod(localSecond, SECONDS_PER_DAY); in ofInstant()
926 long localSecond = epochSecond + offset.getTotalSeconds(); in findYear() local927 long localEpochDay = Math.floorDiv(localSecond, 86400); in findYear()