Lines Matching refs:this
62 return !(*this == T);
70 return !(*this < T);
78 return !(*this > T);
86 return !(*this == T);
93 return !(*this < T);
100 return !(*this > T);
105 if (*this <= T) {
106 return *this = log_time(EPOCH);
109 if (this->tv_nsec < T.tv_nsec) {
110 --this->tv_sec;
111 this->tv_nsec = NS_PER_SEC + this->tv_nsec - T.tv_nsec;
113 this->tv_nsec -= T.tv_nsec;
115 this->tv_sec -= T.tv_sec;
117 return *this;
120 log_time local(*this);
124 this->tv_nsec += T.tv_nsec;
125 if (this->tv_nsec >= NS_PER_SEC) {
126 this->tv_nsec -= NS_PER_SEC;
127 ++this->tv_sec;
129 this->tv_sec += T.tv_sec;
131 return *this;
134 log_time local(*this);