/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | Timer.h | 27 class TimeRecord { 33 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} in TimeRecord() function 39 static TimeRecord getCurrentTime(bool Start = true); 47 bool operator<(const TimeRecord &T) const { 52 void operator+=(const TimeRecord &RHS) { 58 void operator-=(const TimeRecord &RHS) { 67 void print(const TimeRecord &Total, raw_ostream &OS) const; 78 TimeRecord Time; ///< The total time captured. 79 TimeRecord StartTime; ///< The time startTimer() was last called. 131 TimeRecord getTotalTime() const { return Time; } in getTotalTime() [all …]
|
/external/llvm/include/llvm/Support/ |
D | Timer.h | 26 class TimeRecord { 32 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} in TimeRecord() function 38 static TimeRecord getCurrentTime(bool Start = true); 47 bool operator<(const TimeRecord &T) const { 52 void operator+=(const TimeRecord &RHS) { 58 void operator-=(const TimeRecord &RHS) { 67 void print(const TimeRecord &Total, raw_ostream &OS) const; 79 TimeRecord Time; // The total time captured 80 TimeRecord StartTime; // The time startTimer() was last called 125 TimeRecord getTotalTime() const { return Time; } in getTotalTime() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Timer.h | 26 class TimeRecord { 32 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} in TimeRecord() function 38 static TimeRecord getCurrentTime(bool Start = true); 46 bool operator<(const TimeRecord &T) const { 51 void operator+=(const TimeRecord &RHS) { 57 void operator-=(const TimeRecord &RHS) { 66 void print(const TimeRecord &Total, raw_ostream &OS) const; 77 TimeRecord Time; ///< The total time captured. 78 TimeRecord StartTime; ///< The time startTimer() was last called. 130 TimeRecord getTotalTime() const { return Time; } in getTotalTime() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | Timer.h | 31 class TimeRecord { 37 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} in TimeRecord() function 43 static TimeRecord getCurrentTime(bool Start = true); 53 bool operator<(const TimeRecord &T) const { 58 void operator+=(const TimeRecord &RHS) { 64 void operator-=(const TimeRecord &RHS) { 73 void print(const TimeRecord &Total, raw_ostream &OS) const; 85 TimeRecord Time; 168 std::vector<std::pair<TimeRecord, std::string> > TimersToPrint;
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Timer.cpp | 129 TimeRecord TimeRecord::getCurrentTime(bool Start) { in getCurrentTime() 130 TimeRecord Result; in getCurrentTime() 152 Time -= TimeRecord::getCurrentTime(true); in startTimer() 156 Time += TimeRecord::getCurrentTime(false); in stopTimer() 177 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { in print() 320 TimeRecord Total; in PrintQueuedTimers() 355 const std::pair<TimeRecord, std::string> &Entry = TimersToPrint[e-i-1]; in PrintQueuedTimers() 379 T->Time = TimeRecord(); in print()
|
/external/llvm/lib/Support/ |
D | Timer.cpp | 120 TimeRecord TimeRecord::getCurrentTime(bool Start) { in getCurrentTime() 121 TimeRecord Result; in getCurrentTime() 141 StartTime = TimeRecord::getCurrentTime(true); in startTimer() 147 Time += TimeRecord::getCurrentTime(false); in stopTimer() 153 Time = StartTime = TimeRecord(); in clear() 163 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { in print() 305 TimeRecord Total; in PrintQueuedTimers() 338 const std::pair<TimeRecord, std::string> &Entry = TimersToPrint[e-i-1]; in PrintQueuedTimers()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | Timer.cpp | 114 TimeRecord TimeRecord::getCurrentTime(bool Start) { in getCurrentTime() 116 TimeRecord Result; in getCurrentTime() 137 StartTime = TimeRecord::getCurrentTime(true); in startTimer() 143 Time += TimeRecord::getCurrentTime(false); in stopTimer() 149 Time = StartTime = TimeRecord(); in clear() 159 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { in print() 240 const StringMap<TimeRecord> &Records) in TimerGroup() 300 TimeRecord Total; in PrintQueuedTimers() 397 const TimeRecord &T = R.Time; in printJSONValues()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Timer.cpp | 120 TimeRecord TimeRecord::getCurrentTime(bool Start) { in getCurrentTime() 122 TimeRecord Result; in getCurrentTime() 143 StartTime = TimeRecord::getCurrentTime(true); in startTimer() 149 Time += TimeRecord::getCurrentTime(false); in stopTimer() 155 Time = StartTime = TimeRecord(); in clear() 165 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { in print() 297 TimeRecord Total; in PrintQueuedTimers() 384 const TimeRecord &T = R.Time; in printJSONValues()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchFinder.h | 125 Profiling(llvm::StringMap<llvm::TimeRecord> &Records) in Profiling() 129 llvm::StringMap<llvm::TimeRecord> &Records;
|
/external/python/cpython2/Mac/Modules/qt/ |
D | qtsupport.py | 194 TimeRecord = OpaqueType("TimeRecord", "QtTimeRecord") variable 195 TimeRecord_ptr = TimeRecord
|
D | _Qtmodule.c | 57 QtTimeRecord_New(TimeRecord *itself) in QtTimeRecord_New() 68 QtTimeRecord_Convert(PyObject *v, TimeRecord *p_itself) in QtTimeRecord_Convert() 1406 TimeRecord tr; in TimeBaseObj_GetTimeBaseTime() 1425 TimeRecord tr; in TimeBaseObj_SetTimeBaseTime() 1496 TimeRecord tr; in TimeBaseObj_GetTimeBaseStartTime() 1515 TimeRecord tr; in TimeBaseObj_SetTimeBaseStartTime() 1534 TimeRecord tr; in TimeBaseObj_GetTimeBaseStopTime() 1553 TimeRecord tr; in TimeBaseObj_SetTimeBaseStopTime() 1603 TimeRecord slaveZero; in TimeBaseObj_SetTimeBaseMasterTimeBase() 1638 TimeRecord slaveZero; in TimeBaseObj_SetTimeBaseMasterClock() [all …]
|
/external/clang/tools/libclang/ |
D | CIndexCodeCompletion.cpp | 658 const llvm::TimeRecord &StartTime = llvm::TimeRecord::getCurrentTime(); in clang_codeCompleteAt_Impl() 724 const llvm::TimeRecord &EndTime = llvm::TimeRecord::getCurrentTime(); in clang_codeCompleteAt_Impl()
|
D | CIndex.cpp | 8014 static llvm::TimeRecord sBeginTR = llvm::TimeRecord::getCurrentTime(); in ~Logger() 8025 llvm::TimeRecord TR = llvm::TimeRecord::getCurrentTime(); in ~Logger()
|
/external/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 502 void setBucket(llvm::TimeRecord *NewBucket) { in setBucket() 504 auto Now = llvm::TimeRecord::getCurrentTime(true); in setBucket() 514 llvm::TimeRecord *Bucket; 732 llvm::StringMap<llvm::TimeRecord> TimeByBucket;
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersInternalTest.cpp | 105 llvm::StringMap<llvm::TimeRecord> Records; in TEST()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTimerTree.cpp | 310 return llvm::TimeRecord::getCurrentTime(false).getWallTime(); in timestamp()
|
D | IceGlobalContext.cpp | 264 llvm::TimeRecord::getCurrentTime(false).getMemUsed())) { in dump()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | toc-load-sched-bug.ll | 137 %"class.llvm::Timer" = type { %"class.llvm::TimeRecord", %"class.std::basic_string", i8, %"class.ll… 138 %"class.llvm::TimeRecord" = type { double, double, double, i64 } 141 …t.std::_Vector_base<std::pair<llvm::TimeRecord, std::basic_string<char> >, std::allocator<std::pai… 142 …t.std::_Vector_base<std::pair<llvm::TimeRecord, std::basic_string<char> >, std::allocator<std::pai…
|
/external/llvm/test/CodeGen/PowerPC/ |
D | toc-load-sched-bug.ll | 137 %"class.llvm::Timer" = type { %"class.llvm::TimeRecord", %"class.std::basic_string", i8, %"class.ll… 138 %"class.llvm::TimeRecord" = type { double, double, double, i64 } 141 …t.std::_Vector_base<std::pair<llvm::TimeRecord, std::basic_string<char> >, std::allocator<std::pai… 142 …t.std::_Vector_base<std::pair<llvm::TimeRecord, std::basic_string<char> >, std::allocator<std::pai…
|
/external/clang/lib/Frontend/ |
D | ASTUnit.cpp | 53 using llvm::TimeRecord; 58 TimeRecord Start; 64 Start = TimeRecord::getCurrentTime(); in SimpleTimer() 74 TimeRecord Elapsed = TimeRecord::getCurrentTime(); in ~SimpleTimer()
|