HomeSort by: relevance | last modified time | path
    Searched defs:orows (Results 1 - 1 of 1) sorted by relevancy

  /src/usr.bin/rs/
rs.c 89 static int orows, ocols; variable in typeref:typename:int
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)
    [all...]

Completed in 30 milliseconds