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

  /external/compiler-rt/lib/asan/
asan_allocator.cc 430 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats(); local
431 thread_stats.real_frees++;
432 thread_stats.really_freed += m->used_size;
433 thread_stats.really_freed_redzones += m->Size() - m->used_size;
434 thread_stats.really_freed_by_size[m->SizeClass()]++;
457 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
458 thread_stats.mmaps++;
459 thread_stats.mmaped += mmap_size;
460 thread_stats.mmaped_by_size[size_class] += n_chunks;
533 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats()
    [all...]
asan_allocator2.cc 37 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats(); local
38 thread_stats.mmaps++;
39 thread_stats.mmaped += size;
52 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats(); local
53 thread_stats.munmaps++;
54 thread_stats.munmaped += size;
277 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats(); local
278 thread_stats.real_frees++;
279 thread_stats.really_freed += m->UsedSize();
404 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats() local
455 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats(); local
479 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats(); local
    [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 114 milliseconds