Home
last modified time | relevance | path

Searched refs:__d_ (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dday.h29 unsigned char __d_;
34 : __d_(static_cast<unsigned char>(__val)) {}
36 ++__d_;
45 --__d_;
55 _LIBCPP_HIDE_FROM_ABI explicit inline constexpr operator unsigned() const noexcept { return __d_; }
56 _LIBCPP_HIDE_FROM_ABI inline constexpr bool ok() const noexcept { return __d_ >= 1 && __d_ <= 31; }
H A Dtime_point.h45 duration __d_;
48 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 time_point() : __d_(duration::zero()) {} in time_point()
49 …HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 explicit time_point(const duration& __d) : __d_(__d) {} in time_point()
54 : __d_(__t.time_since_epoch()) {} in time_point()
58 …BCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 duration time_since_epoch() const { return __d_; } in time_since_epoch()
63 __d_ += __d;
67 __d_ -= __d;
H A Dmonthday.h32 chrono::day __d_;
37 : __m_{__mval}, __d_{__dval} {} in month_day()
39 _LIBCPP_HIDE_FROM_ABI inline constexpr chrono::day day() const noexcept { return __d_; } in day()
46 const unsigned __dval = static_cast<unsigned>(__d_); in ok()
33 chrono::day __d_; global() variable
H A Dyear_month_day.h42 chrono::day __d_; variable
48 : __y_{__yval}, __m_{__mval}, __d_{__dval} {} in year_month_day()
62 _LIBCPP_HIDE_FROM_ABI inline constexpr chrono::day day() const noexcept { return __d_; } in day()
97 const unsigned __dy = static_cast<unsigned>(__d_); in __to_days()
323 : __y_{__ymdl.year()}, __m_{__ymdl.month()}, __d_{__ymdl.day()} {} in year_month_day()
328 return chrono::day{1} <= __d_ && __d_ <= (__y_ / __m_ / last).day(); in ok()
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dpoisson_distribution.h42 double __d_;
113 __d_ = 0;
123 __d_ = 6 * __mean_ * __mean_;
156 if (__pr.__d_ * __u >= __difmuk * __difmuk * __difmuk) in param_type()
43 double __d_; global() variable