Home
last modified time | relevance | path

Searched refs:ocols (Results 1 – 1 of 1) sorted by relevance

/freebsd/usr.bin/rs/
H A Drs.cc71 static size_t orows = 0, ocols = 0; variable
176 for (j = 0; j < ocols; j++, k++) in putfile()
221 ocols = irows; in prepfile()
223 else if (orows == 0 && ocols == 0) { /* decide rows and cols */ in prepfile()
224 ocols = owidth / colw; in prepfile()
225 if (ocols == 0) { in prepfile()
228 ocols = 1; in prepfile()
230 if (ocols > elem.size()) in prepfile()
231 ocols = elem.size(); in prepfile()
232 orows = elem.size() / ocols + (elem.size() % ocols ? 1 : 0); in prepfile()
[all …]