Lines Matching defs:used
45 " inline ids are used instead of arguments:"
47 " If \b#\b is specified then the internal width and precision are used."
95 " \"%#..1(filesystem)s %#(type)s %#(blocks)s %#(used)s %#(available)s %#(capacity)s %(mounted)s\"]"
116 unsigned long used;
180 "Percent of total blocks used.",
204 "Percent of total inodes used.",
258 "used",
268 static const char fmt_def[] = "%#..1(filesystem)s %#(type)s %#(blocks)s %#(used)s %#(available)s %#(capacity)s %(mounted)s";
271 static const char fmt_std[] = "%#..1(filesystem)s %#(blocks)s %#(used)s %#(available)s %8(capacity)s %(mounted)s";
524 s = (df->total || df->ttotal) ? scale(df->fraction, df->used, df->tused) : "-";
598 df->total = df->avail = df->used = 0;
610 df->used = ((long)df->vfs.f_blocks <= (long)df->vfs.f_bfree) ? 0 : (df->vfs.f_blocks - df->vfs.f_bfree);
612 df->percent = (df->ttotal = df->avail + df->used) ? (unsigned long)(((double)df->used / (double)df->ttotal + 0.005) * 100.0) : 0;
626 df->used *= s;
635 df->tused = (df->used / df->fraction) % 10;
639 df->used /= s;