Lines Matching refs:width
102 fprintf(fd, "%*s", f->width, f->label); in bsdstat_print_header()
123 fprintf(fd, "%*s", f->width, buf); in bsdstat_print_current()
144 fprintf(fd, "%*s", f->width, buf); in bsdstat_print_total()
156 int i, width; in bsdstat_print_verbose() local
158 width = 0; in bsdstat_print_verbose()
161 if (f->width > width) in bsdstat_print_verbose()
162 width = f->width; in bsdstat_print_verbose()
167 fprintf(fd, "%-*s %s\n", width, s, f->desc); in bsdstat_print_verbose()
174 int i, w, width; in bsdstat_print_fields() local
176 width = 0; in bsdstat_print_fields()
179 if (w > width) in bsdstat_print_fields()
180 width = w; in bsdstat_print_fields()
184 if (f->width != 0) in bsdstat_print_fields()
185 fprintf(fd, "%-*s %s\n", width, f->name, f->desc); in bsdstat_print_fields()