Home | History | Annotate | Download | only in rs

Lines Matching defs:orows

89 static int	orows, ocols;
201 for (i = 0; i < orows; i++) {
202 for (j = i; j < nelem; j += orows)
203 prints(ep[j], (j - i) / orows);
207 for (n = 0, i = 0; i < orows && n < nelem; i++) {
266 orows = icols;
269 else if (orows == 0 && ocols == 0) { /* decide rows and cols */
277 orows = nelem / ocols + (nelem % ocols ? 1 : 0);
279 else if (orows == 0) /* decide on rows */
280 orows = nelem / ocols + (nelem % ocols ? 1 : 0);
282 ocols = nelem / orows + (nelem % orows ? 1 : 0);
283 lp = elem + orows * ocols;
286 lp = elem + orows * ocols;
298 for (j = 0; j < orows; j++)
311 /* for (i = 0; i < orows; i++) {
312 for (j = i; j < nelem; j += orows)
313 prints(ep[j], (j - i) / orows);
317 for (i = 0; i < orows; i++) {
331 n = orows * ocols;
500 orows = atoi(av[0]);