Searched refs:currentSecond (Results 1 – 1 of 1) sorted by relevance
677 int64_t currentSecond = currentTime / 1000; // 1000:millisecond in GetTimerFromMSecond() local678 int32_t second = currentSecond % 60; // 60:second in GetTimerFromMSecond()679 int32_t minute = (currentSecond / 60) % 60; // 60:minute 60:second in GetTimerFromMSecond()680 int32_t hour = (currentSecond / 60) / 60; // 60:minute 60:second in GetTimerFromMSecond()