Lines Matching refs:block
25 * df -- free disk block report
58 "[i:inodes?Display inode usage instead of block usage. There is at least one"
66 "[n:native-block?Measure disk usage in the native filesystem block size."
164 "Unused block count.",
172 "Total block count.",
236 "Native block size.",
260 "Used block count.",
275 * some systems insist on reporting block counts in 512 units
311 int block; /* block unit */
373 n *= state.block;
376 if (state.block < 1024 * 1024)
617 state.block = F_FRSIZE(&df->vfs);
618 else if (state.block)
621 if (b > state.block)
623 s = b / state.block;
628 else if (b < state.block)
630 s = state.block / b;
678 state.block = -1;
714 state.block = 512;
747 state.block = 1024 * 1024 * 1024;
756 state.block = 1024;
765 state.block = 1024 * 1024;
768 state.block = 0;
807 if (state.block < 0)
810 state.block = 512;
813 state.block = 1024 * 1024;
824 else if (state.block <= 512)
827 if (!state.block)
830 else if (state.block <= 1024)
833 if (state.block == 1024)
836 else if (state.block <= 1024 * 1024)
839 if (state.block == 1024 * 1024)
842 else if (state.block <= 1024 * 1024 * 1024)
845 if (state.block == 1024 * 1024 * 1024)
850 sfprintf(state.mac, "%d-blocks", state.block);