Lines Matching refs:MILLIS_PER_MINUTE
120 static const int32_t MILLIS_PER_MINUTE = 60 * 1000;
1489 if (useUtcIndicator && (absOffset < MILLIS_PER_SECOND || (ignoreSeconds && absOffset < MILLIS_PER_MINUTE))) {
1510 fields[1] = absOffset / MILLIS_PER_MINUTE;
1511 absOffset = absOffset % MILLIS_PER_MINUTE;
1574 int32_t offsetM = offset / MILLIS_PER_MINUTE;
1575 offset = offset % MILLIS_PER_MINUTE;
1955 offset = hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;
2070 return hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;
2150 fields[1] = offset / MILLIS_PER_MINUTE;
2151 offset = offset % MILLIS_PER_MINUTE;
2320 offset += fieldVal[1] * MILLIS_PER_MINUTE;