Lines Matching defs:TimedResult
82 struct TimedResult { struct
83 uint64_t start_ns = 0;
84 uint64_t end_ns = 0;
85 union {
89 } v;
91 uint64_t GetStartTimeNS() const { return start_ns; } in GetStartTimeNS()
92 uint64_t GetEndTimeNS() const { return end_ns; } in GetEndTimeNS()
93 void SetStartTimeNS(uint64_t t) { start_ns = t; } in SetStartTimeNS()
94 void SetEndTimeNS(uint64_t t) { end_ns = t; } in SetEndTimeNS()
99 void setValue(size_t s) { in setValue()
103 void setValue(int i) { in setValue()
107 void setValue(void* p) { in setValue()
114 size_t getValue<size_t>() const { in getValue()
118 int getValue<int>() const { in getValue()
122 void* getValue<void*>() const { in getValue()