Home | History | Annotate | Download | only in time

Lines Matching defs:max_int

856   int64_t max_int = std::numeric_limits<int64_t>::max();
858 t = TimeDelta::FromSeconds(max_int / Time::kMicrosecondsPerSecond + 1);
861 t = TimeDelta::FromMilliseconds(max_int / Time::kMillisecondsPerSecond + 1);
864 t = TimeDelta::FromMicroseconds(max_int);
867 t = TimeDelta::FromSeconds(-max_int / Time::kMicrosecondsPerSecond - 1);
870 t = TimeDelta::FromMilliseconds(-max_int / Time::kMillisecondsPerSecond - 1);
873 t = TimeDelta::FromMicroseconds(-max_int);
882 double max_d = max_int;