Home
last modified time | relevance | path

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

/src/sys/teken/
H A Dteken_subr.h273 teken_subr_cursor_down(teken_t *t, unsigned int nrows) in teken_subr_cursor_down() argument
276 if (t->t_cursor.tp_row + nrows >= t->t_scrollreg.ts_end) in teken_subr_cursor_down()
279 t->t_cursor.tp_row += nrows; in teken_subr_cursor_down()
361 teken_subr_cursor_up(teken_t *t, unsigned int nrows) in teken_subr_cursor_up() argument
364 if (t->t_scrollreg.ts_begin + nrows >= t->t_cursor.tp_row) in teken_subr_cursor_up()
367 t->t_cursor.tp_row -= nrows; in teken_subr_cursor_up()
415 teken_subr_delete_line(const teken_t *t, unsigned int nrows) in teken_subr_delete_line() argument
428 if (t->t_cursor.tp_row + nrows >= t->t_scrollreg.ts_end) { in teken_subr_delete_line()
434 tr.tr_begin.tp_row = t->t_cursor.tp_row + nrows; in teken_subr_delete_line()
439 tr.tr_begin.tp_row = t->t_scrollreg.ts_end - nrows; in teken_subr_delete_line()
[all …]
/src/contrib/arm-optimized-routines/math/tools/
H A Dplot.py48 fig, (ax0,ax1) = plt.subplots(nrows=2)
/src/sys/contrib/openzfs/module/zfs/
H A Dvdev_draid.c1115 int nrows = 1; in vdev_draid_map_alloc() local
1125 nrows++; in vdev_draid_map_alloc()
1138 rm = kmem_zalloc(offsetof(raidz_map_t, rm_row[nrows]), KM_SLEEP); in vdev_draid_map_alloc()
1140 rm->rm_nrows = nrows; in vdev_draid_map_alloc()
1142 if (nrows == 2) in vdev_draid_map_alloc()