Lines Matching full:double

329 static const char *get_ratio_color(enum grc_type type, double ratio)  in get_ratio_color()
331 static const double grc_table[GRC_MAX_NR][3] = { in get_ratio_color()
456 static double runtime_stat_avg(struct runtime_stat *st, in runtime_stat_avg()
469 static double runtime_stat_n(struct runtime_stat *st, in runtime_stat_n()
483 int map_idx, double avg, in print_stalled_cycles_frontend()
488 double total, ratio = 0.0; in print_stalled_cycles_frontend()
506 int map_idx, double avg, in print_stalled_cycles_backend()
511 double total, ratio = 0.0; in print_stalled_cycles_backend()
525 int map_idx, double avg, in print_branch_misses()
530 double total, ratio = 0.0; in print_branch_misses()
544 int map_idx, double avg, in print_l1_dcache_misses()
549 double total, ratio = 0.0; in print_l1_dcache_misses()
563 int map_idx, double avg, in print_l1_icache_misses()
568 double total, ratio = 0.0; in print_l1_icache_misses()
581 int map_idx, double avg, in print_dtlb_cache_misses()
586 double total, ratio = 0.0; in print_dtlb_cache_misses()
599 int map_idx, double avg, in print_itlb_cache_misses()
604 double total, ratio = 0.0; in print_itlb_cache_misses()
617 int map_idx, double avg, in print_ll_cache_misses()
622 double total, ratio = 0.0; in print_ll_cache_misses()
676 static double sanitize_val(double x) in sanitize_val()
683 static double td_total_slots(int map_idx, struct runtime_stat *st, in td_total_slots()
689 static double td_bad_spec(int map_idx, struct runtime_stat *st, in td_bad_spec()
692 double bad_spec = 0; in td_bad_spec()
693 double total_slots; in td_bad_spec()
694 double total; in td_bad_spec()
706 static double td_retiring(int map_idx, struct runtime_stat *st, in td_retiring()
709 double retiring = 0; in td_retiring()
710 double total_slots = td_total_slots(map_idx, st, rsd); in td_retiring()
711 double ret_slots = runtime_stat_avg(st, STAT_TOPDOWN_SLOTS_RETIRED, in td_retiring()
719 static double td_fe_bound(int map_idx, struct runtime_stat *st, in td_fe_bound()
722 double fe_bound = 0; in td_fe_bound()
723 double total_slots = td_total_slots(map_idx, st, rsd); in td_fe_bound()
724 double fetch_bub = runtime_stat_avg(st, STAT_TOPDOWN_FETCH_BUBBLES, in td_fe_bound()
732 static double td_be_bound(int map_idx, struct runtime_stat *st, in td_be_bound()
735 double sum = (td_fe_bound(map_idx, st, rsd) + in td_be_bound()
748 static double td_metric_ratio(int map_idx, enum stat_type type, in td_metric_ratio()
752 double sum = runtime_stat_avg(stat, STAT_TOPDOWN_RETIRING, map_idx, rsd) + in td_metric_ratio()
756 double d = runtime_stat_avg(stat, type, map_idx, rsd); in td_metric_ratio()
789 double smi_num, aperf, cycles, cost = 0.0; in print_smi_cost()
814 double scale; in prepare_metric()
899 double ratio, scale; in generic_metric()
956 double test_generic_metric(struct metric_expr *mexp, int map_idx, struct runtime_stat *st) in test_generic_metric()
959 double ratio = 0.0; in test_generic_metric()
978 double avg, int map_idx, in perf_stat__print_shadow_stats()
985 double total, ratio = 0.0, total2; in perf_stat__print_shadow_stats()
1146 double fe_bound = td_fe_bound(map_idx, st, &rsd); in perf_stat__print_shadow_stats()
1153 double retiring = td_retiring(map_idx, st, &rsd); in perf_stat__print_shadow_stats()
1160 double bad_spec = td_bad_spec(map_idx, st, &rsd); in perf_stat__print_shadow_stats()
1167 double be_bound = td_be_bound(map_idx, st, &rsd); in perf_stat__print_shadow_stats()
1187 double retiring = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1196 double fe_bound = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1205 double be_bound = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1214 double bad_spec = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1223 double retiring = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1226 double heavy_ops = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1229 double light_ops = retiring - heavy_ops; in perf_stat__print_shadow_stats()
1243 double bad_spec = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1246 double br_mis = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1249 double m_clears = bad_spec - br_mis; in perf_stat__print_shadow_stats()
1263 double fe_bound = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1266 double fetch_lat = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1269 double fetch_bw = fe_bound - fetch_lat; in perf_stat__print_shadow_stats()
1283 double be_bound = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1286 double mem_bound = td_metric_ratio(map_idx, in perf_stat__print_shadow_stats()
1289 double core_bound = be_bound - mem_bound; in perf_stat__print_shadow_stats()