Lines Matching full:double
281 static const char *get_ratio_color(enum grc_type type, double ratio) in get_ratio_color()
283 static const double grc_table[GRC_MAX_NR][3] = { in get_ratio_color()
390 static double runtime_stat_avg(struct runtime_stat *st, in runtime_stat_avg()
402 static double runtime_stat_n(struct runtime_stat *st, in runtime_stat_n()
415 struct perf_evsel *evsel, double avg, in print_stalled_cycles_frontend()
419 double total, ratio = 0.0; in print_stalled_cycles_frontend()
438 struct perf_evsel *evsel, double avg, in print_stalled_cycles_backend()
442 double total, ratio = 0.0; in print_stalled_cycles_backend()
458 double avg, in print_branch_misses()
462 double total, ratio = 0.0; in print_branch_misses()
478 double avg, in print_l1_dcache_misses()
483 double total, ratio = 0.0; in print_l1_dcache_misses()
499 double avg, in print_l1_icache_misses()
504 double total, ratio = 0.0; in print_l1_icache_misses()
519 double avg, in print_dtlb_cache_misses()
523 double total, ratio = 0.0; in print_dtlb_cache_misses()
538 double avg, in print_itlb_cache_misses()
542 double total, ratio = 0.0; in print_itlb_cache_misses()
557 double avg, in print_ll_cache_misses()
561 double total, ratio = 0.0; in print_ll_cache_misses()
616 static double sanitize_val(double x) in sanitize_val()
623 static double td_total_slots(int ctx, int cpu, struct runtime_stat *st) in td_total_slots()
628 static double td_bad_spec(int ctx, int cpu, struct runtime_stat *st) in td_bad_spec()
630 double bad_spec = 0; in td_bad_spec()
631 double total_slots; in td_bad_spec()
632 double total; in td_bad_spec()
644 static double td_retiring(int ctx, int cpu, struct runtime_stat *st) in td_retiring()
646 double retiring = 0; in td_retiring()
647 double total_slots = td_total_slots(ctx, cpu, st); in td_retiring()
648 double ret_slots = runtime_stat_avg(st, STAT_TOPDOWN_SLOTS_RETIRED, in td_retiring()
656 static double td_fe_bound(int ctx, int cpu, struct runtime_stat *st) in td_fe_bound()
658 double fe_bound = 0; in td_fe_bound()
659 double total_slots = td_total_slots(ctx, cpu, st); in td_fe_bound()
660 double fetch_bub = runtime_stat_avg(st, STAT_TOPDOWN_FETCH_BUBBLES, in td_fe_bound()
668 static double td_be_bound(int ctx, int cpu, struct runtime_stat *st) in td_be_bound()
670 double sum = (td_fe_bound(ctx, cpu, st) + in td_be_bound()
682 double smi_num, aperf, cycles, cost = 0.0; in print_smi_cost()
706 double avg, in generic_metric()
713 double ratio; in generic_metric()
722 double scale; in generic_metric()
755 double avg, int cpu, in perf_stat__print_shadow_stats()
762 double total, ratio = 0.0, total2; in perf_stat__print_shadow_stats()
924 double fe_bound = td_fe_bound(ctx, cpu, st); in perf_stat__print_shadow_stats()
931 double retiring = td_retiring(ctx, cpu, st); in perf_stat__print_shadow_stats()
938 double bad_spec = td_bad_spec(ctx, cpu, st); in perf_stat__print_shadow_stats()
945 double be_bound = td_be_bound(ctx, cpu, st); in perf_stat__print_shadow_stats()