HomeSort by relevance Sort by last modified time
    Searched refs:thread_stats (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/asan/
asan_allocator.cc 522 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats(); local
523 thread_stats.real_frees++;
524 thread_stats.really_freed += m->used_size;
525 thread_stats.really_freed_redzones += m->Size() - m->used_size;
526 thread_stats.really_freed_by_size[m->SizeClass()]++;
548 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
549 thread_stats.mmaps++;
550 thread_stats.mmaped += mmap_size;
551 thread_stats.mmaped_by_size[size_class] += n_chunks;
654 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats()
    [all...]
  /external/linux-tools-perf/
builtin-lock.c 121 static struct rb_root thread_stats; variable in typeref:struct:rb_root
128 node = thread_stats.rb_node;
144 struct rb_node **rb = &thread_stats.rb_node;
161 rb_insert_color(&new->rb, &thread_stats);
198 rb_link_node(&st->rb, NULL, &thread_stats.rb_node);
199 rb_insert_color(&st->rb, &thread_stats);
827 node = rb_first(&thread_stats);

Completed in 3291 milliseconds