Searched defs:thread_stats (Results 1 - 2 of 2) sorted by relevance

/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-lock.c113 static struct rb_root thread_stats; variable in typeref:struct:rb_root
120 node = thread_stats.rb_node;
136 struct rb_node **rb = &thread_stats.rb_node;
153 rb_insert_color(&new->rb, &thread_stats);
194 rb_link_node(&st->rb, NULL, &thread_stats.rb_node);
195 rb_insert_color(&st->rb, &thread_stats);
761 node = rb_first(&thread_stats);
/external/compiler-rt/lib/asan/
H A Dasan_allocator.cc155 AsanStats &thread_stats = GetCurrentThreadStats(); local
156 thread_stats.real_frees++;
157 thread_stats.really_freed += m->UsedSize();
179 AsanStats &thread_stats = GetCurrentThreadStats(); local
180 thread_stats.mmaps++;
181 thread_stats.mmaped += size;
189 AsanStats &thread_stats = GetCurrentThreadStats(); local
190 thread_stats.munmaps++;
191 thread_stats.munmaped += size;
436 AsanStats &thread_stats local
495 AsanStats &thread_stats = GetCurrentThreadStats(); local
536 AsanStats &thread_stats = GetCurrentThreadStats(); local
[all...]

Completed in 107 milliseconds