Searched refs:newSofd (Results 1 – 1 of 1) sorted by relevance
1139 … int newSofd = ((int) (secondstoAdd % SECONDS_PER_DAY) + sofd + SECONDS_PER_DAY) % SECONDS_PER_DAY; in plusSeconds() local1140 if (sofd == newSofd) { in plusSeconds()1143 int newHour = newSofd / SECONDS_PER_HOUR; in plusSeconds()1144 int newMinute = (newSofd / SECONDS_PER_MINUTE) % MINUTES_PER_HOUR; in plusSeconds()1145 int newSecond = newSofd % SECONDS_PER_MINUTE; in plusSeconds()