Searched refs:newSofd (Results 1 – 1 of 1) sorted by relevance
1116 … int newSofd = ((int) (secondstoAdd % SECONDS_PER_DAY) + sofd + SECONDS_PER_DAY) % SECONDS_PER_DAY; in plusSeconds() local1117 if (sofd == newSofd) { in plusSeconds()1120 int newHour = newSofd / SECONDS_PER_HOUR; in plusSeconds()1121 int newMinute = (newSofd / SECONDS_PER_MINUTE) % MINUTES_PER_HOUR; in plusSeconds()1122 int newSecond = newSofd % SECONDS_PER_MINUTE; in plusSeconds()