Lines Matching defs:__ns_rep
100 using __ns_rep = nanoseconds::rep;
103 _Rep __result_max = numeric_limits<__ns_rep>::max();
108 _Rep __result_min = numeric_limits<__ns_rep>::min();
113 return nanoseconds(static_cast<__ns_rep>(__result_float));
124 using __ns_rep = nanoseconds::rep;
125 __ns_rep __result_max = numeric_limits<__ns_rep>::max();
130 __ns_rep __result_min = numeric_limits<__ns_rep>::min();
135 __ns_rep __result = __d.count() * __ratio::num / __ratio::den;
180 using __ns_rep = nanoseconds::rep;
185 __ns_rep __now_count_ns = std::__safe_nanosecond_cast(__c_now.time_since_epoch()).count();
188 __ns_rep __now_count_ns = std::__safe_nanosecond_cast(system_clock::now().time_since_epoch()).count();
191 __ns_rep __d_ns_count = std::__safe_nanosecond_cast(__d).count();
193 if (__now_count_ns > numeric_limits<__ns_rep>::max() - __d_ns_count) {