Home
last modified time | relevance | path

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

/freebsd/usr.bin/column/
H A Dcolumn.c171 int base, chcnt, cnt, col, endcol, numcols, numrows, row; in r_columnate() local
174 numrows = entries / numcols; in r_columnate()
176 ++numrows; in r_columnate()
178 for (row = 0; row < numrows; ++row) { in r_columnate()
183 if ((base += numrows) >= entries) in r_columnate()
/freebsd/contrib/nvi/common/
H A Doptions.c823 int numcols, numrows, row; in opts_dump() local
918 numrows = s_num / numcols; in opts_dump()
920 ++numrows; in opts_dump()
922 numrows = 1; in opts_dump()
925 for (row = 0; row < numrows;) { in opts_dump()
928 if ((base += numrows) >= s_num) in opts_dump()
933 if (++row < numrows || b_num) in opts_dump()
/freebsd/crypto/openssl/include/internal/
H A Dconstant_time.h414 * Copies row number idx into out. rowsize and numrows are not considered
420 size_t numrows,
431 for (i = 0; i < numrows; i++, idx--) {
397 constant_time_lookup(void * out,const void * table,size_t rowsize,size_t numrows,size_t idx) constant_time_lookup() argument
/freebsd/contrib/flex/src/
H A Dgen.c468 int numrows; in genecs() local
482 numrows = csize / 8; in genecs()
484 for (j = 0; j < numrows; ++j) { in genecs()
485 for (i = j; i < csize; i = i + numrows) { in genecs()
/freebsd/contrib/nvi/vi/
H A Dv_txt.c2131 size_t base, cnt, col, colwidth, numrows, numcols, prefix, row; in txt_fc_col() local
2199 numrows = argc / numcols; in txt_fc_col()
2201 ++numrows; in txt_fc_col()
2203 numrows = 1; in txt_fc_col()
2206 for (row = 0; row < numrows; ++row) { in txt_fc_col()
2215 if ((base += numrows) >= argc) in txt_fc_col()