Lines Matching refs:minutes
93 int64_t minutes;
164 int64_t minutes, int64_t seconds, int64_t milliseconds,
169 Isolate* isolate, int64_t* days, int64_t* hours, int64_t* minutes,
266 int64_t hours, int64_t minutes, int64_t seconds, int64_t milliseconds,
271 int64_t minutes, int64_t seconds,
796 int64_t minutes, int64_t seconds, int64_t milliseconds,
800 // 1. If ! IsValidDuration(years, months, weeks, days, hours, minutes,
804 {years, months, weeks, days, hours, minutes, seconds,
831 // 9. Set object.[[Minutes]] to minutes.
832 SET_FROM_INT64(object, minutes);
848 int64_t days, int64_t hours, int64_t minutes, int64_t seconds,
853 days, hours, minutes, seconds, milliseconds,
2219 // 5. Let minutes be floor(offsetNanoseconds / (6 × 10^10)) modulo 60.
2220 int64_t minutes = (offset_nanoseconds / 60000000000) % 60;
2229 // 8. Let m be minutes, formatted as a two-digit decimal number, padded to the
2231 builder.AppendCString((minutes < 10) ? ":0" : ":");
2232 builder.AppendInt(static_cast<int>(minutes));
2565 // 3. Let z, sign, hours, minutes, seconds, fraction and name be the parts of
2599 // e. Set minutes to ! ToIntegerOrInfinity(minutes).
2600 int32_t minutes =
2619 // i. Let offsetNanoseconds be sign × (((hours × 60 + minutes) × 60 +
2623 (((hours * 60 + minutes) * 60 + seconds) * 1000000000L + nanoseconds);
2709 // 3. Let sign, hours, minutes, seconds, and fraction be the parts of
2726 // 8. Set minutes to ! ToIntegerOrInfinity(minutes).
2727 int64_t minutes = parsed.tzuo_minute_is_undefined() ? 0 : parsed.tzuo_minute;
2744 // 12. Return sign × (((hours × 60 + minutes) × 60 + seconds) × 10^9 +
2746 return Just(sign * (((hours * 60 + minutes) * 60 + seconds) * 1000000000 +
3556 // microsecond, nanosecond, hours, minutes, seconds, milliseconds,
3560 nanosecond, dur.hours, dur.minutes, dur.seconds, dur.milliseconds,
3597 int64_t* minutes, int64_t* seconds,
3604 return BalanceDuration(isolate, days, hours, minutes, seconds, milliseconds,
3610 int64_t* minutes, int64_t* seconds,
3624 // minutes, seconds, milliseconds, microseconds, nanoseconds).
3632 {0, 0, 0, *days, *hours, *minutes, *seconds,
3645 // a. Set nanoseconds to ℤ(! TotalDurationNanoseconds(days, hours, minutes,
3648 TotalDurationNanoseconds(isolate, *days, *hours, *minutes, *seconds,
3668 // 6. Set hours, minutes, seconds, milliseconds, and microseconds to 0.
3669 *hours = *minutes = *seconds = *milliseconds = *microseconds = 0;
3695 // g. Set minutes to floor(seconds, 60).
3696 *minutes = floor_divide(*seconds, 60);
3699 // i. Set hours to floor(minutes / 60).
3700 *hours = floor_divide(*minutes, 60);
3701 // j. Set minutes to minutes modulo 60.
3702 *minutes = modulo(*minutes, 60);
3718 // g. Set minutes to floor(seconds / 60).
3719 *minutes = floor_divide(*seconds, 60);
3763 // [[Minutes]]: ?(minutes × sign), [[Seconds]]: ?(seconds × sign),
3767 *minutes *= sign;
3803 // a. Return ! AddInstant(epochNanoseconds, hours, minutes, seconds,
3806 duration.minutes, duration.seconds, duration.milliseconds,
3873 // minutes, seconds, milliseconds, microseconds, nanoseconds).
3876 duration.hours, duration.minutes, duration.seconds, duration.milliseconds,
4125 result.minutes = time_difference.minutes;
4158 result.minutes = time_difference.minutes;
4165 isolate, &(result.days), &(result.hours), &(result.minutes),
4209 isolate, &(result.days), &(result.hours), &(result.minutes),
4230 int64_t minutes, int64_t seconds,
4235 // 1. Assert: hours, minutes, seconds, milliseconds, microseconds, and
4239 // ℤ(minutes) × 60ℤ × 10^9ℤ + ℤ(hours) × 3600ℤ × 10^9ℤ.
4273 BigInt::Multiply(isolate, BigInt::FromInt64(isolate, minutes),
4365 // 1. For each value v of « years, months, weeks, days, hours, minutes,
4379 if (dur.minutes < 0) return -1;
4380 if (dur.minutes > 0) return 1;
4396 // 1. Let sign be ! DurationSign(years, months, weeks, days, hours, minutes,
4399 // 2. For each value v of « years, months, weeks, days, hours, minutes,
4405 dur.days < 0 || dur.hours < 0 || dur.minutes < 0 ||
4409 dur.days > 0 || dur.hours > 0 || dur.minutes > 0 ||
4590 // 3. Let minutes be min2 − min1.
4591 dur.minutes = min2 - min1;
4600 // 8. Let sign be ! DurationSign(0, 0, 0, 0, hours, minutes, seconds,
4605 // 9. Let bt be ! BalanceTime(hours × sign, minutes × sign, seconds × sign,
4608 isolate, dur.hours * sign, dur.minutes * sign, dur.seconds * sign,
4632 int64_t hours, int64_t minutes, int64_t seconds,
4638 // hours, minutes, seconds, milliseconds, microseconds, and nanoseconds are
4642 // 3. Let minute be minute + minutes.
4643 minute + minutes,
4658 int64_t minutes, int64_t seconds,
4674 // 5. Set minutes to ℝ(minutes) + hours × 60.
4675 minutes += hours * 60;
4677 // 6. Set seconds to ℝ(seconds) + minutes × 60.
4678 seconds += minutes * 60;
4696 Handle<Object> days, Handle<Object> hours, Handle<Object> minutes,
4744 // 7. Let m be ? ToIntegerThrowOnInfinity(minutes).
4747 ToIntegerThrowOnInfinity(isolate, minutes),
4800 NumberToInt64(duration->hours()), NumberToInt64(duration->minutes()),
4824 NumberToInt64(duration->hours()), NumberToInt64(duration->minutes()),
4850 -NumberToInt64(duration->minutes()), -NumberToInt64(duration->seconds()),
4886 std::abs(NumberToInt64(duration->minutes())),