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

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_libcdep.cc 52 StackDepotStats *stack_depot_stats = StackDepotGetStats(); local
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/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_common_libcdep.cpp 49 StackDepotStats stack_depot_stats = StackDepotGetStats(); local
51 stack_depot_stats.allocated) {
53 stack_depot_stats.n_uniq_ids, stack_depot_stats.allocated >> 20);
54 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
130 stack_depot_stats->n_uniq_ids, stack_depot_stats->allocated >> 20);
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_stats.cpp 127 StackDepotStats stack_depot_stats = StackDepotGetStats(); local
129 stack_depot_stats.n_uniq_ids, stack_depot_stats.allocated >> 20);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_common_libcdep.cpp 46 StackDepotStats stack_depot_stats = StackDepotGetStats(); local
48 stack_depot_stats.allocated) {
50 stack_depot_stats.n_uniq_ids, stack_depot_stats.allocated >> 20);
51 prev_reported_stack_depot_size = stack_depot_stats.allocated;
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_stats.cpp 127 StackDepotStats stack_depot_stats = StackDepotGetStats(); local
129 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
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 18 milliseconds