Lines Matching full:double

302 static const char *get_ratio_color(enum grc_type type, double ratio)  in get_ratio_color()
304 static const double grc_table[GRC_MAX_NR][3] = { in get_ratio_color()
424 static double runtime_stat_avg(struct runtime_stat *st, in runtime_stat_avg()
436 static double runtime_stat_n(struct runtime_stat *st, in runtime_stat_n()
450 struct evsel *evsel, double avg, in print_stalled_cycles_frontend()
454 double total, ratio = 0.0; in print_stalled_cycles_frontend()
474 struct evsel *evsel, double avg, in print_stalled_cycles_backend()
478 double total, ratio = 0.0; in print_stalled_cycles_backend()
495 double avg, in print_branch_misses()
499 double total, ratio = 0.0; in print_branch_misses()
516 double avg, in print_l1_dcache_misses()
521 double total, ratio = 0.0; in print_l1_dcache_misses()
538 double avg, in print_l1_icache_misses()
543 double total, ratio = 0.0; in print_l1_icache_misses()
559 double avg, in print_dtlb_cache_misses()
563 double total, ratio = 0.0; in print_dtlb_cache_misses()
579 double avg, in print_itlb_cache_misses()
583 double total, ratio = 0.0; in print_itlb_cache_misses()
599 double avg, in print_ll_cache_misses()
603 double total, ratio = 0.0; in print_ll_cache_misses()
658 static double sanitize_val(double x) in sanitize_val()
665 static double td_total_slots(int ctx, int cpu, struct runtime_stat *st) in td_total_slots()
670 static double td_bad_spec(int ctx, int cpu, struct runtime_stat *st) in td_bad_spec()
672 double bad_spec = 0; in td_bad_spec()
673 double total_slots; in td_bad_spec()
674 double total; in td_bad_spec()
686 static double td_retiring(int ctx, int cpu, struct runtime_stat *st) in td_retiring()
688 double retiring = 0; in td_retiring()
689 double total_slots = td_total_slots(ctx, cpu, st); in td_retiring()
690 double ret_slots = runtime_stat_avg(st, STAT_TOPDOWN_SLOTS_RETIRED, in td_retiring()
698 static double td_fe_bound(int ctx, int cpu, struct runtime_stat *st) in td_fe_bound()
700 double fe_bound = 0; in td_fe_bound()
701 double total_slots = td_total_slots(ctx, cpu, st); in td_fe_bound()
702 double fetch_bub = runtime_stat_avg(st, STAT_TOPDOWN_FETCH_BUBBLES, in td_fe_bound()
710 static double td_be_bound(int ctx, int cpu, struct runtime_stat *st) in td_be_bound()
712 double sum = (td_fe_bound(ctx, cpu, st) + in td_be_bound()
725 static double td_metric_ratio(int ctx, int cpu, in td_metric_ratio()
729 double sum = runtime_stat_avg(stat, STAT_TOPDOWN_RETIRING, ctx, cpu) + in td_metric_ratio()
733 double d = runtime_stat_avg(stat, type, ctx, cpu); in td_metric_ratio()
766 double smi_num, aperf, cycles, cost = 0.0; in print_smi_cost()
792 double scale; in prepare_metric()
858 double ratio, scale; in generic_metric()
906 double test_generic_metric(struct metric_expr *mexp, int cpu, struct runtime_stat *st) in test_generic_metric()
909 double ratio = 0.0; in test_generic_metric()
924 double avg, int cpu, in perf_stat__print_shadow_stats()
931 double total, ratio = 0.0, total2; in perf_stat__print_shadow_stats()
1090 double fe_bound = td_fe_bound(ctx, cpu, st); in perf_stat__print_shadow_stats()
1097 double retiring = td_retiring(ctx, cpu, st); in perf_stat__print_shadow_stats()
1104 double bad_spec = td_bad_spec(ctx, cpu, st); in perf_stat__print_shadow_stats()
1111 double be_bound = td_be_bound(ctx, cpu, st); in perf_stat__print_shadow_stats()
1131 double retiring = td_metric_ratio(ctx, cpu, in perf_stat__print_shadow_stats()
1140 double fe_bound = td_metric_ratio(ctx, cpu, in perf_stat__print_shadow_stats()
1149 double be_bound = td_metric_ratio(ctx, cpu, in perf_stat__print_shadow_stats()
1158 double bad_spec = td_metric_ratio(ctx, cpu, in perf_stat__print_shadow_stats()