HomeSort by: relevance | last modified time | path
    Searched defs:stack_depot_stats (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_libcdep.cc 52 StackDepotStats *stack_depot_stats = StackDepotGetStats(); local in function:__sanitizer::BackgroundThread
53 if (stack_depot_stats) {
55 stack_depot_stats->allocated) {
58 stack_depot_stats->n_uniq_ids,
59 stack_depot_stats->allocated >> 20);
60 prev_reported_stack_depot_size = stack_depot_stats->allocated;
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_stats.cc 128 StackDepotStats *stack_depot_stats = StackDepotGetStats(); local in function:__asan::PrintAccumulatedStats
130 stack_depot_stats->n_uniq_ids, stack_depot_stats->allocated >> 20);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_report.cc 126 StackDepotStats *stack_depot_stats = StackDepotGetStats(); local in function:__msan::ReportStats
129 Printf("Unique heap origins: %zu\n", stack_depot_stats->n_uniq_ids);
130 Printf("Stack depot allocated bytes: %zu\n", stack_depot_stats->allocated);

Completed in 15 milliseconds