Home | History | Annotate | Download | only in utils

Lines Matching defs:delta

49 /// Represents a time delta to describe deadlines.
50 class delta {
52 /// The amount of seconds in the time delta.
55 /// The amount of microseconds in the time delta.
58 delta(void);
59 delta(const int64_t, const unsigned long);
61 static delta from_microseconds(const int64_t);
64 bool operator==(const delta&) const;
65 bool operator!=(const delta&) const;
67 delta operator+(const delta&) const;
68 delta operator+=(const delta&);
72 std::ostream& operator<<(std::ostream&, const delta&);
103 delta operator-(const timestamp&) const;