Searched refs:t2 (Results 1 - 2 of 2) sorted by relevance
/commonlibrary/c_utils/base/test/benchmarktest/ |
H A D | benchmark_assert.h | 22 void AssertEqual(const T1 &t1, const T2 &t2, const char* printInfo, benchmark::State& state)
in AssertEqual() argument 24 if (t1 != t2) {
in AssertEqual() 30 void AssertUnequal(const T1 &t1, const T2 &t2, const char* printInfo, benchmark::State& state)
in AssertUnequal() argument 32 if (t1 == t2) {
in AssertUnequal() 54 void AssertLessThan(const T1 &t1, const T2 &t2, const char* printInfo, benchmark::State& state)
in AssertLessThan() argument 56 if (t1 >= t2) {
in AssertLessThan() 62 void AssertLessThanOrEqual(const T1 &t1, const T2 &t2, const char* printInfo, benchmark::State& state)
in AssertLessThanOrEqual() argument 64 if (t1 > t2) {
in AssertLessThanOrEqual() 70 void AssertGreaterThan(const T1 &t1, const T2 &t2, const char* printInfo, benchmark::State& state)
in AssertGreaterThan() argument 72 if (t1 <= t2) {
in AssertGreaterThan() 78 AssertGreaterThanOrEqual(const T1 &t1, const T2 &t2, const char* printInfo, benchmark::State& state) AssertGreaterThanOrEqual() argument [all...] |
/commonlibrary/c_utils/base/src/ |
H A D | datetime_ex.cpp | 77 auto t2 = t1; in GetLocalTimeZone() local 81 struct tm* gmTime = gmtime_r(&t2, &curTime2); in GetLocalTimeZone() 87 t2 = mktime(&curTime2); in GetLocalTimeZone() 88 if ((t1 == -1) || (t2 == -1)) { in GetLocalTimeZone() 93 timezone = (static_cast<int>(t1 - t2)) / SECONDS_PER_HOUR; in GetLocalTimeZone()
|
Completed in 1 milliseconds