Home | History | Annotate | Download | only in profiling

Lines Matching defs:ThreadInfo

162 struct ThreadInfo;
165 inline std::set<ThreadInfo*>& ThreadsUnderProfiling() {
166 static std::set<ThreadInfo*> v;
170 struct ThreadInfo {
174 ThreadInfo() {
181 ThreadInfo* self = static_cast<ThreadInfo*>(ptr);
187 inline ThreadInfo& ThreadLocalThreadInfo() {
189 // We're leaking this ThreadInfo structure, because Apple doesn't support
191 GEMMLOWP_THREAD_LOCAL ThreadInfo* i = nullptr;
193 i = new ThreadInfo();
197 GEMMLOWP_THREAD_LOCAL ThreadInfo i;