Lines Matching refs:width
104 fprintf(fd, "%*s", f->width, f->label); in bsdstat_print_header()
125 fprintf(fd, "%*s", f->width, buf); in bsdstat_print_current()
146 fprintf(fd, "%*s", f->width, buf); in bsdstat_print_total()
158 int i, width; in bsdstat_print_verbose() local
160 width = 0; in bsdstat_print_verbose()
163 if (f->width > width) in bsdstat_print_verbose()
164 width = f->width; in bsdstat_print_verbose()
169 fprintf(fd, "%-*s %s\n", width, s, f->desc); in bsdstat_print_verbose()
176 int i, w, width; in bsdstat_print_fields() local
178 width = 0; in bsdstat_print_fields()
181 if (w > width) in bsdstat_print_fields()
182 width = w; in bsdstat_print_fields()
186 if (f->width != 0) in bsdstat_print_fields()
187 fprintf(fd, "%-*s %s\n", width, f->name, f->desc); in bsdstat_print_fields()