Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/profiler/utils/
Dtimespan.h40 : begin_ps_(begin_ps), duration_ps_(duration_ps) {} in begin_ps_() function
42 uint64 begin_ps() const { return begin_ps_; } in begin_ps()
43 uint64 middle_ps() const { return begin_ps_ + duration_ps_ / 2; } in middle_ps()
44 uint64 end_ps() const { return begin_ps_ + duration_ps_; } in end_ps()
91 if (begin_ps_ < other.begin_ps_) return true;
92 if (begin_ps_ > other.begin_ps_) return false;
98 return begin_ps_ == other.begin_ps_ && duration_ps_ == other.duration_ps_;
111 return a.begin_ps_ < b.begin_ps_; in ByDuration()
115 uint64 begin_ps_;