Lines Matching defs:TimedResult
81 struct TimedResult { struct
82 uint64_t start_ns = 0;
83 uint64_t end_ns = 0;
84 union {
88 } v;
90 uint64_t GetStartTimeNS() const { return start_ns; } in GetStartTimeNS()
91 uint64_t GetEndTimeNS() const { return end_ns; } in GetEndTimeNS()
92 void SetStartTimeNS(uint64_t t) { start_ns = t; } in SetStartTimeNS()
93 void SetEndTimeNS(uint64_t t) { end_ns = t; } in SetEndTimeNS()
98 void setValue(size_t s) { in setValue()
102 void setValue(int i) { in setValue()
106 void setValue(void* p) { in setValue()
113 size_t getValue<size_t>() const { in getValue()
117 int getValue<int>() const { in getValue()
121 void* getValue<void*>() const { in getValue()