Lines Matching defs:base
797 void __output_ranges(FILE *ofp, struct list_head *head_p, float base)
801 float limit = base + 0.4;
805 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->start), base);
808 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->end), base);
813 float base)
819 __output_ranges(ofp, ®->qranges, base);
823 __output_ranges(ofp, ®->cranges, base + 0.5);
831 float base;
839 if (output_regions(odp->ofp, header, &dip->regions, odp->base))
840 odp->base += 1.0;
843 float output_devs(FILE *ofp, float base)
845 struct __od od = { .ofp = ofp, .base = base };
849 return od.base;
859 float base;
864 output_regions(opp->ofp, pip->name, &pip->regions, opp->base);
865 opp->base += 1.0;
868 float output_procs(FILE *ofp, float base)
870 struct __op op = { .ofp = ofp, .base = base };
874 return op.base;
879 float base = 0.0;
882 if (output_regions(ofp, "Total System", &all_regions, base))
883 base += 1.0;
886 base = output_devs(ofp, base);
888 base = output_procs(ofp, base);