Home | History | Annotate | Download | only in ksh

Lines Matching defs:rows

1108 /* Print things in columns and rows - func() is called to format the ith
1123 int rows, cols;
1133 rows = (n + cols - 1) / cols;
1134 if (prefcol && n && cols > rows) {
1135 int tmp = rows;
1137 rows = cols;
1139 if (rows > n)
1140 rows = n;
1146 for (r = 0; r < rows; r++) {
1148 i = c * rows + r;