Lines Matching defs:TimedResult
77 struct TimedResult { struct
78 uint64_t start_ns = 0;
79 uint64_t end_ns = 0;
80 union {
84 } v;
86 uint64_t GetStartTimeNS() const { return start_ns; } in GetStartTimeNS()
87 uint64_t GetEndTimeNS() const { return end_ns; } in GetEndTimeNS()
88 void SetStartTimeNS(uint64_t t) { start_ns = t; } in SetStartTimeNS()
89 void SetEndTimeNS(uint64_t t) { end_ns = t; } in SetEndTimeNS()
94 void setValue(size_t s) { in setValue()
98 void setValue(int i) { in setValue()
102 void setValue(void* p) { in setValue()
109 size_t getValue<size_t>() const { in getValue()
113 int getValue<int>() const { in getValue()
117 void* getValue<void*>() const { in getValue()