Lines Matching refs:MILLIS_PER_MINUTE
118 static const int32_t MILLIS_PER_MINUTE = 60 * 1000;
1487 if (useUtcIndicator && (absOffset < MILLIS_PER_SECOND || (ignoreSeconds && absOffset < MILLIS_PER_MINUTE))) {
1508 fields[1] = absOffset / MILLIS_PER_MINUTE;
1509 absOffset = absOffset % MILLIS_PER_MINUTE;
1572 int32_t offsetM = offset / MILLIS_PER_MINUTE;
1573 offset = offset % MILLIS_PER_MINUTE;
1953 offset = hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;
2068 return hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;
2148 fields[1] = offset / MILLIS_PER_MINUTE;
2149 offset = offset % MILLIS_PER_MINUTE;
2318 offset += fieldVal[1] * MILLIS_PER_MINUTE;