Lines Matching full:double

337 static const char *get_ratio_color(enum grc_type type, double ratio)  in get_ratio_color()
339 static const double grc_table[GRC_MAX_NR][3] = { in get_ratio_color()
459 static double runtime_stat_avg(struct runtime_stat *st, in runtime_stat_avg()
472 static double runtime_stat_n(struct runtime_stat *st, in runtime_stat_n()
486 int cpu, double avg, in print_stalled_cycles_frontend()
491 double total, ratio = 0.0; in print_stalled_cycles_frontend()
509 int cpu, double avg, in print_stalled_cycles_backend()
514 double total, ratio = 0.0; in print_stalled_cycles_backend()
528 int cpu, double avg, in print_branch_misses()
533 double total, ratio = 0.0; in print_branch_misses()
547 int cpu, double avg, in print_l1_dcache_misses()
552 double total, ratio = 0.0; in print_l1_dcache_misses()
566 int cpu, double avg, in print_l1_icache_misses()
571 double total, ratio = 0.0; in print_l1_icache_misses()
584 int cpu, double avg, in print_dtlb_cache_misses()
589 double total, ratio = 0.0; in print_dtlb_cache_misses()
602 int cpu, double avg, in print_itlb_cache_misses()
607 double total, ratio = 0.0; in print_itlb_cache_misses()
620 int cpu, double avg, in print_ll_cache_misses()
625 double total, ratio = 0.0; in print_ll_cache_misses()
679 static double sanitize_val(double x) in sanitize_val()
686 static double td_total_slots(int cpu, struct runtime_stat *st, in td_total_slots()
692 static double td_bad_spec(int cpu, struct runtime_stat *st, in td_bad_spec()
695 double bad_spec = 0; in td_bad_spec()
696 double total_slots; in td_bad_spec()
697 double total; in td_bad_spec()
709 static double td_retiring(int cpu, struct runtime_stat *st, in td_retiring()
712 double retiring = 0; in td_retiring()
713 double total_slots = td_total_slots(cpu, st, rsd); in td_retiring()
714 double ret_slots = runtime_stat_avg(st, STAT_TOPDOWN_SLOTS_RETIRED, in td_retiring()
722 static double td_fe_bound(int cpu, struct runtime_stat *st, in td_fe_bound()
725 double fe_bound = 0; in td_fe_bound()
726 double total_slots = td_total_slots(cpu, st, rsd); in td_fe_bound()
727 double fetch_bub = runtime_stat_avg(st, STAT_TOPDOWN_FETCH_BUBBLES, in td_fe_bound()
735 static double td_be_bound(int cpu, struct runtime_stat *st, in td_be_bound()
738 double sum = (td_fe_bound(cpu, st, rsd) + in td_be_bound()
751 static double td_metric_ratio(int cpu, enum stat_type type, in td_metric_ratio()
755 double sum = runtime_stat_avg(stat, STAT_TOPDOWN_RETIRING, cpu, rsd) + in td_metric_ratio()
759 double d = runtime_stat_avg(stat, type, cpu, rsd); in td_metric_ratio()
792 double smi_num, aperf, cycles, cost = 0.0; in print_smi_cost()
817 double scale; in prepare_metric()
884 double ratio, scale; in generic_metric()
932 double test_generic_metric(struct metric_expr *mexp, int cpu, struct runtime_stat *st) in test_generic_metric()
935 double ratio = 0.0; in test_generic_metric()
950 double avg, int cpu, in perf_stat__print_shadow_stats()
957 double total, ratio = 0.0, total2; in perf_stat__print_shadow_stats()
1118 double fe_bound = td_fe_bound(cpu, st, &rsd); in perf_stat__print_shadow_stats()
1125 double retiring = td_retiring(cpu, st, &rsd); in perf_stat__print_shadow_stats()
1132 double bad_spec = td_bad_spec(cpu, st, &rsd); in perf_stat__print_shadow_stats()
1139 double be_bound = td_be_bound(cpu, st, &rsd); in perf_stat__print_shadow_stats()
1159 double retiring = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1168 double fe_bound = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1177 double be_bound = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1186 double bad_spec = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1195 double retiring = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1198 double heavy_ops = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1201 double light_ops = retiring - heavy_ops; in perf_stat__print_shadow_stats()
1215 double bad_spec = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1218 double br_mis = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1221 double m_clears = bad_spec - br_mis; in perf_stat__print_shadow_stats()
1235 double fe_bound = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1238 double fetch_lat = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1241 double fetch_bw = fe_bound - fetch_lat; in perf_stat__print_shadow_stats()
1255 double be_bound = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1258 double mem_bound = td_metric_ratio(cpu, in perf_stat__print_shadow_stats()
1261 double core_bound = be_bound - mem_bound; in perf_stat__print_shadow_stats()