Home | History | Annotate | Download | only in llvmpipe

Lines Matching refs:total_64

48       unsigned total_64, total_16, total_4;
54 total_64 = (lp_count.nr_empty_64 +
58 p1 = 100.0 * (float) lp_count.nr_empty_64 / (float) total_64;
59 p2 = 100.0 * (float) lp_count.nr_fully_covered_64 / (float) total_64;
60 p3 = 100.0 * (float) lp_count.nr_partially_covered_64 / (float) total_64;
61 p5 = 100.0 * (float) lp_count.nr_shade_opaque_64 / (float) total_64;
62 p6 = 100.0 * (float) lp_count.nr_shade_64 / (float) total_64;
64 debug_printf("llvmpipe: nr_64x64: %9u\n", total_64);
65 debug_printf("llvmpipe: nr_fully_covered_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_fully_covered_64, p2, total_64);
66 debug_printf("llvmpipe: nr_shade_opaque_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_shade_opaque_64, p5, total_64);
68 debug_printf("llvmpipe: nr_shade_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_shade_64, p6, total_64);
70 debug_printf("llvmpipe: nr_partially_covered_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_64, p3, total_64);
71 debug_printf("llvmpipe: nr_empty_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_empty_64, p1, total_64);