Searched refs:stats (Results 1 - 25 of 52) sorted by relevance

123

/haiku-buildtools/gcc/libsanitizer/asan/
H A Dasan_stats.cc60 void AsanStats::MergeFrom(const AsanStats *stats) { argument
62 const uptr *src_ptr = reinterpret_cast<const uptr*>(stats);
81 accumulated_stats->MergeFrom(&t->stats());
84 static void GetAccumulatedStats(AsanStats *stats) { argument
85 stats->Clear();
89 .RunCallbackForEachThreadLocked(MergeThreadStats, stats);
91 stats->MergeFrom(&unknown_thread_stats);
94 stats->MergeFrom(&dead_threads_stats);
99 if (max_malloced_memory < stats->malloced) {
100 max_malloced_memory = stats
104 FlushToDeadThreadStats(AsanStats *stats) argument
111 AsanStats stats; local
125 AsanStats stats; local
142 AsanStats stats; local
152 AsanStats stats; local
158 AsanStats stats; local
[all...]
H A Dasan_stats.h48 // Ctor for global AsanStats (accumulated stats for dead threads).
50 // Creates empty stats.
53 void Print(); // Prints formatted stats to stderr.
55 void MergeFrom(const AsanStats *stats);
58 // Returns stats for GetCurrentThread(), or stats for fake "unknown thread"
61 // Flushes a given stats into accumulated stats of dead threads.
62 void FlushToDeadThreadStats(AsanStats *stats);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sparc/
H A Dmnofpu.c65 struct e1000_hw_stats stats; member in struct:e1000_adapter
78 adapter->stats.prc64 += __er32(hw, E1000_PRC64);
79 adapter->stats.prc127 += __er32(hw, E1000_PRC127);
80 adapter->stats.prc255 += __er32(hw, E1000_PRC255);
81 adapter->stats.ptc511 += __er32(hw, E1000_PTC511);
82 adapter->stats.ptc1023 += __er32(hw, E1000_PTC1023);
83 adapter->stats.ptc1522 += __er32(hw, E1000_PTC1522);
85 adapter->stats.mptc += __er32(hw, E1000_MPTC);
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/bench/garbage/
H A DMakefile14 go build $*.go stats.go
/haiku-buildtools/isl/
H A Disl_ctx_private.h6 struct isl_stats *stats; member in struct:isl_ctx
H A Dbasis_reduction_templ.c134 ctx->stats->gbr_solved_lps++;
152 ctx->stats->gbr_solved_lps++;
167 ctx->stats->gbr_solved_lps++;
197 ctx->stats->gbr_solved_lps++;
H A Disl_ctx.c107 ctx->stats = isl_calloc_type(ctx, struct isl_stats);
108 if (!ctx->stats)
184 free(ctx->stats);
/haiku-buildtools/gcc/gcc/
H A Dgenemit.c268 struct pattern_stats stats;
353 get_pattern_stats (&stats, XVEC (insn, 1));
354 if (stats.max_dup_opno > stats.max_opno)
359 if (stats.num_generator_args)
360 for (i = 0; i < stats.num_generator_args; i++)
380 char *used = XCNEWVEC (char, stats.num_generator_args);
401 struct pattern_stats stats;
411 get_pattern_stats (&stats, XVEC (expand, 1));
415 if (stats
266 struct pattern_stats stats; local
398 struct pattern_stats stats; local
537 struct pattern_stats stats; local
[all...]
H A Dtree-ssa-copyrename.c78 } stats; variable in typeref:struct:__anon1910
373 memset (&stats, 0, sizeof (stats));
483 stats.coalesced++;
488 stats.coalesced);
H A Dtree-ssa-dce.c113 } stats; variable in typeref:struct:stmt_stats
985 stats.total_phis++;
1024 stats.removed_phis++;
1108 stats.removed++;
1348 stats.total++;
1563 percg = ((float) stats.removed / (float) stats.total) * 100;
1565 stats.removed, stats.total, (int) percg);
1567 if (stats
[all...]
H A Dgenoutput.c905 struct pattern_stats stats;
929 get_pattern_stats (&stats, XVEC (insn, 1));
930 d->n_generator_args = stats.num_generator_args;
931 d->n_operands = stats.num_insn_operands;
932 d->n_dups = stats.num_dups;
949 struct pattern_stats stats;
973 get_pattern_stats (&stats, XVEC (peep, 0));
975 d->n_operands = stats.num_insn_operands;
990 struct pattern_stats stats;
1018 get_pattern_stats (&stats, XVE
898 struct pattern_stats stats; local
941 struct pattern_stats stats; local
981 struct pattern_stats stats; local
1027 struct pattern_stats stats; local
[all...]
H A Dggc-page.c523 } stats;
1428 G.stats.total_overhead += overhead;
1429 G.stats.total_allocated += object_size;
1430 G.stats.total_overhead_per_order[order] += overhead;
1431 G.stats.total_allocated_per_order[order] += object_size;
1435 G.stats.total_overhead_under32 += overhead;
1436 G.stats.total_allocated_under32 += object_size;
1440 G.stats.total_overhead_under64 += overhead;
1441 G.stats.total_allocated_under64 += object_size;
1445 G.stats
521 } stats; member in struct:ggc_globals
2250 struct ggc_statistics stats; local
[all...]
H A Dpostreload-gcse.c112 } stats;
1226 stats.moves_inserted++;
1242 stats.copies_inserted++;
1265 stats.insns_deleted++;
1371 stats.insns_deleted++;
1400 memset (&stats, 0, sizeof (stats));
1432 fprintf (dump_file, "GCSE AFTER RELOAD stats:\n");
1433 fprintf (dump_file, "copies inserted: %d\n", stats.copies_inserted);
1434 fprintf (dump_file, "moves inserted: %d\n", stats
111 } stats; variable in typeref:struct:__anon807
[all...]
H A Dgensupport.c2922 get_pattern_stats_1 (struct pattern_stats *stats, rtx x)
2938 stats->max_opno = MAX (stats->max_opno, XINT (x, 0));
2944 stats->num_dups++;
2945 stats->max_dup_opno = MAX (stats->max_dup_opno, XINT (x, 0));
2949 stats->max_scratch_opno = MAX (stats->max_scratch_opno, XINT (x, 0));
2961 get_pattern_stats_1 (stats, XEXP (x, i));
2966 get_pattern_stats_1 (stats, XVECEX
2914 get_pattern_stats_1(struct pattern_stats *stats, rtx x) argument
2967 get_pattern_stats(struct pattern_stats *stats, rtvec pattern) argument
[all...]
H A Dtree-scalar-evolution.c3072 /* Counters for the stats. */
3087 reset_chrecs_counters (struct chrec_stats *stats)
3089 stats->nb_chrecs = 0;
3090 stats->nb_affine = 0;
3091 stats->nb_affine_multivar = 0;
3092 stats->nb_higher_poly = 0;
3093 stats->nb_chrec_dont_know = 0;
3094 stats->nb_undetermined = 0; argument
3100 dump_chrecs_stats (FILE *file, struct chrec_stats *stats)
3104 fprintf (file, "%d\taffine univariate chrecs\n", stats
3081 reset_chrecs_counters(struct chrec_stats *stats) argument
3119 gather_chrec_stats(tree chrec, struct chrec_stats *stats) argument
3180 struct chrec_stats stats; local
[all...]
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_procmaps.h80 /*out*/uptr *stats, uptr stats_size);
83 // |cb| is a tool-specific callback that fills the |stats| array containing
85 void GetMemoryProfile(fill_profile_f cb, uptr *stats, uptr stats_size);
H A Dsanitizer_stackdepotbase.h31 StackDepotStats *GetStats() { return &stats; }
52 StackDepotStats stats; member in class:__sanitizer::StackDepotBase
117 stats.n_uniq_ids++;
124 stats.allocated += memsz;
H A Dsanitizer_procmaps_common.cc151 void GetMemoryProfile(fill_profile_f cb, uptr *stats, uptr stats_size) { argument
167 cb(start, rss, file, stats, stats_size);
H A Dsanitizer_allocator.h206 // Per-thread stats, live in per-thread cache.
238 // Global stats, used for aggregation and querying.
266 const AllocatorStats *stats = this; local
269 s[i] += stats->Get(AllocatorStat(i));
270 stats = stats->next_;
271 if (stats == this)
274 // All stats must be non-negative.
492 uptr n_allocated, n_freed; // Just stats.
1031 CHECK_LT(size_log, ARRAY_SIZE(stats
1226 } stats; member in class:__sanitizer::LargeMmapAllocator
[all...]
/haiku-buildtools/gcc/libcilkrts/runtime/
H A Dstats.c0 /* stats.c -*-C-*-
39 #include "stats.h"
119 statistics *s = w->l->stats;
128 statistics *s = w->l->stats;
138 statistics *s = w->l->stats;
172 /* End stats.c */
H A Dglobal_state.h52 #include "stats.h"
168 * constant after initialization or not used until shutdown (stats) so we
175 statistics stats; ///< Statistics on use of runtime member in struct:global_state_t
H A Dlocal_state.h341 statistics* stats; member in struct:local_state
/haiku-buildtools/gcc/libsanitizer/lsan/
H A Dlsan_allocator.cc210 uptr stats[AllocatorStatCount]; local
211 allocator.GetStats(stats);
212 return stats[AllocatorStatAllocated];
217 uptr stats[AllocatorStatCount]; local
218 allocator.GetStats(stats);
219 return stats[AllocatorStatMapped];
/haiku-buildtools/gcc/libsanitizer/tsan/
H A Dtsan_mman.cc178 uptr stats[AllocatorStatCount]; local
179 allocator()->GetStats(stats);
180 return stats[AllocatorStatAllocated];
184 uptr stats[AllocatorStatCount]; local
185 allocator()->GetStats(stats);
186 return stats[AllocatorStatMapped];
/haiku-buildtools/legacy/gcc/gcc/
H A Dloop.c7026 struct combine_givs_stats *stats;
7042 stats = (struct combine_givs_stats *) alloca (giv_count * sizeof (*stats));
7043 bzero ((char *) stats, giv_count * sizeof (*stats));
7054 stats[i].giv_number = i;
7084 stats[i].total_benefit = this_benefit;
7089 qsort (stats, giv_count, sizeof(*stats), cmp_combine_givs_stats);
7096 g1 = giv_array[stats[
6987 struct combine_givs_stats *stats; local
7258 struct recombine_givs_stats *stats; local
[all...]

Completed in 153 milliseconds

123